Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
297 changes: 177 additions & 120 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"

[workspace.package]
edition = "2024"
rust-version = "1.86"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
homepage = "https://cot.rs"
repository = "https://github.com/cot-rs/cot"
Expand All @@ -41,7 +41,7 @@ unreachable_pub = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
unused_qualifications = "allow"
Copy link

Copilot AI Dec 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The unused_qualifications lint is changed from "warn" to "allow". This relaxes the code quality requirements without explanation in the PR description. Consider documenting why this change is necessary or reverting it if it's not required by the dependency updates.

Suggested change
unused_qualifications = "allow"
unused_qualifications = "warn"

Copilot uses AI. Check for mistakes.
rust_2018_idioms = { level = "warn", priority = -1 }

[workspace.lints.clippy]
Expand All @@ -58,25 +58,25 @@ ahash = { version = "0.8.12", default-features = false }
aide = { version = "0.15", default-features = false }
anstyle = "1.0.13"
anyhow = "1.0.100"
askama = { version = "0.14", default-features = false }
askama = { version = "0.15", default-features = false }
assert_cmd = "2"
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.8", default-features = false }
backtrace = "0.3.76"
bytes = "1.10"
bytes = "1.11"
cargo_toml = "0.22"
chrono = { version = "0.4.42", default-features = false }
chrono-tz = { version = "0.10.4", default-features = false }
clap = { version = "4.5.51", features = ["deprecated"] }
clap = { version = "4.5.53", features = ["deprecated"] }
clap-verbosity-flag = { version = "3", default-features = false }
clap_complete = "4"
clap_mangen = "0.2.31"
cot = { version = "0.4.0", path = "cot" }
cot_codegen = { version = "0.4.0", path = "cot-codegen" }
cot_macros = { version = "0.4.0", path = "cot-macros" }
criterion = "0.8"
darling = "0.21"
darling = "0.23"
deadpool-redis = { version = "0.22", default-features = false }
derive_builder = "0.20"
derive_more = "2"
Expand All @@ -93,7 +93,7 @@ grass = { version = "0.13.4", default-features = false }
heck = "0.5"
hex = "0.4"
hmac = "0.12"
http = "1.3"
http = "1.4"
http-body = "1"
http-body-util = "0.1.3"
humantime = "2"
Expand Down
Loading
Loading