Skip to content

Commit

Permalink
Clean up, set official msrv.
Browse files Browse the repository at this point in the history
  • Loading branch information
AldaronLau committed Jan 27, 2022
1 parent 640ad27 commit 1969564
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
6 changes: 3 additions & 3 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: [stable, beta, nightly]
tc: [1.56.1, stable, beta, nightly]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
tc: [stable, beta, nightly]
tc: [1.56.1]
cc:
- aarch64-fuchsia
- aarch64-linux-android
Expand All @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
tc: [stable, beta, nightly]
tc: [1.56.1]
cc: [aarch64-apple-ios]
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
max_width = 80
use_field_init_shorthand = true
21 changes: 16 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,28 @@
[package]
name = "fon"
version = "0.6.0"
authors = ["Jeron Aldaron Lau <jeronlau@plopgrizzly.com>"]
edition = "2018"

edition = "2021"
rust-version = "1.56.1"
license = "Apache-2.0 OR MIT OR BSL-1.0"
documentation = "https://docs.rs/fon"
homepage = "https://github.com/AldaronLau/fon/blob/main/CHANGELOG.md"
repository = "https://github.com/AldaronLau/fon"
readme = "README.md"
description = "Rust audio types, resampling, processing and mixing library."
keywords = ["audio", "resample", "processing", "wave", "sound"]
categories = ["multimedia::audio", "multimedia", "algorithms", "data-structures"]
keywords = [
"audio",
"resample",
"processing",
"sample",
"sound",
]
categories = [
"multimedia::audio",
"multimedia",
"algorithms",
"data-structures",
"no-std",
]
include = ["Cargo.toml", "src/*"]

[dependencies]
Expand Down

0 comments on commit 1969564

Please sign in to comment.