diff --git a/Cargo.toml b/Cargo.toml index 507d846..4bf092d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,6 @@ gix-config = { version = "0.53.0", features = ["serde"] } gix-submodule = "0.27.0" gix-pathspec = "0.16.0" gix-glob = "0.24.0" -bstr = { version = "1.12.1", default-features = false } # CLI clap = { version = "4.5.60", features = [ @@ -74,8 +73,6 @@ serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149" # TOML config figment = { version = "0.10.19", default-features = false, features = ["toml"] } -serde = { version = "1.0.228", features = ["derive"] } -serde_json = "1.0.149" # errors anyhow = "1.0.102" @@ -138,13 +135,3 @@ module_name_repetitions = "allow" # Allow some pedantic lints that can be overly strict for CLI tools too_many_lines = "allow" -[lints.rust] -# Warn about missing documentation -missing_docs = "warn" -# Warn about unreachable code -unreachable_code = "warn" -# Deny unsafe code unless explicitly allowed -unsafe_code = "forbid" -# Warn about unused items -unused = { level = "warn", priority = -1 } -