Skip to content

Commit

Permalink
fix: cargo minver bump (#82)
Browse files Browse the repository at this point in the history
Signed-off-by: andreacfromtheapp <[email protected]>
  • Loading branch information
andreacfromtheapp authored Dec 4, 2024
1 parent 9fae896 commit 48c8150
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
rust_stable: stable
rust_clippy: "1.77.2"
rust_min: "1.77.2"
rust_clippy: "1.83.0"
rust_min: "1.83.0"

jobs:
# test:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "freesound-credits"
version = "0.2.21"
edition = "2021"
license = "MIT OR Apache-2.0"
license = "Apache-2.0"

authors = ["Andrea C From The App"]
homepage = "https://andreacfromtheapp.github.io/apps/freesound-credits"
Expand All @@ -19,7 +19,7 @@ name = "freesound-credits"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5.13", features = ["derive"] }
clap = { version = "4.5.22", features = ["derive"] }

# Config for 'cargo dist'
[profile.release]
Expand Down
File renamed without changes.
19 changes: 0 additions & 19 deletions LICENSE-MIT

This file was deleted.

8 changes: 4 additions & 4 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ unknown-git = "deny"
[licenses]
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
allow = ["Apache-2.0", "MIT"]
allow = ["Apache-2.0", "MIT", "Unicode-3.0"]
exceptions = [
# Use exceptions for these as they only have a single user
{ allow = ["Zlib"], crate = "tinyvec" },
{ allow = ["Unicode-DFS-2016"], crate = "unicode-ident" },
{ allow = ["OpenSSL"], crate = "ring" },
# { allow = ["Zlib"], crate = "tinyvec" },
# { allow = ["Unicode-DFS-2016"], crate = "unicode-ident" },
# { allow = ["OpenSSL"], crate = "ring" },
]

# Sigh
Expand Down

0 comments on commit 48c8150

Please sign in to comment.