Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import MSRV stuff from png_pong #16

Merged
merged 3 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
tc: [1.56.1, stable, beta, nightly]
tc: [1.70.0, stable, beta, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -25,9 +25,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
tc: [1.56.1]
tc: [1.70.0]
cc:
- aarch64-fuchsia
- aarch64-linux-android
- i686-pc-windows-gnu
- i686-unknown-freebsd
Expand All @@ -52,7 +51,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
tc: [1.56.1]
tc: [1.70.0]
cc: [aarch64-apple-ios]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name = "fon"
version = "0.6.0"
edition = "2021"
rust-version = "1.56.1"
rust-version = "1.70"
license = "Apache-2.0 OR MIT OR BSL-1.0"
documentation = "https://docs.rs/fon"
homepage = "https://github.com/ardaku/fon/blob/stable/CHANGELOG.md"
Expand Down
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,49 @@ Rust audio types, resampling, converting, processing, and mixing library.
Check out the [documentation][0] for examples.

### Goals

- Fast audio conversion and resampling.
- Standard audio types
- Pure Rust

## See Also

For audio synthesis, check out [twang][14].

For audio recording and playback, check out [wavy][15].

## MSRV

The current MSRV is Rust 1.70.

MSRV is updated according to the [Ardaku MSRV guidelines].

## License

Copyright © 2020-2024 The Fon Crate Contributor(s)

Licensed under any of
- Apache License, Version 2.0, ([LICENSE_APACHE_2_0.txt][7]
or [https://www.apache.org/licenses/LICENSE-2.0][8])
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])
- Boost Software License, Version 1.0, ([LICENSE_BOOST_1_0.txt][11]
or [https://www.boost.org/LICENSE_1_0.txt][12])
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
licensed as described above, without any additional terms or conditions.

## Help

If you want help using or contributing to this library, feel free to send me an
email at [[email protected]][13].

[Ardaku MSRV guidelines]: https://github.com/ardaku/.github/blob/v1/profile/MSRV.md

[0]: https://docs.rs/fon
[1]: https://crates.io/crates/fon
[2]: https://github.com/ardaku/fon/actions?query=workflow%3Atests
Expand Down
Loading