From 4db5a976ae7073040dc6becae76cbb2fefbec3d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Mar 2026 21:26:50 +0000 Subject: [PATCH 1/2] Initial plan From 7b0bb9d46240ea6aae53bd77fb8b749437ed44ea Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Mar 2026 21:29:59 +0000 Subject: [PATCH 2/2] Fix duplicate entries in Cargo.toml (bstr, serde, serde_json, lints.rust) Co-authored-by: bashandbone <89049923+bashandbone@users.noreply.github.com> --- Cargo.toml | 13 ------------- 1 file changed, 13 deletions(-) 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 } -