From 235aee8b11e07926d8b507d4d4b5444a0b0c354a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 2 Jun 2024 20:30:35 +0100 Subject: [PATCH] chore: remove unused dependencies Identified using: cargo +nightly udeps --all-targets --- crates/forge-forgejo/Cargo.toml | 11 ----------- crates/forge-github/Cargo.toml | 14 -------------- crates/forge/Cargo.toml | 15 --------------- crates/repo-actor/Cargo.toml | 10 ---------- 4 files changed, 50 deletions(-) diff --git a/crates/forge-forgejo/Cargo.toml b/crates/forge-forgejo/Cargo.toml index dfb0aa3..271c0a1 100644 --- a/crates/forge-forgejo/Cargo.toml +++ b/crates/forge-forgejo/Cargo.toml @@ -8,9 +8,7 @@ git-next-config = { workspace = true } git-next-git = { workspace = true } # logging -console-subscriber = { workspace = true } tracing = { workspace = true } -tracing-subscriber = { workspace = true } # base64 decoding base64 = { workspace = true } @@ -29,23 +27,14 @@ toml = { workspace = true } # Secrets and Password secrecy = { workspace = true } -# Conventional Commit check -git-conventional = { workspace = true } - # Webhooks bytes = { workspace = true } ulid = { workspace = true } -warp = { workspace = true } # boilerplate derive_more = { workspace = true } -# file watcher -inotify = { workspace = true } - # # Actors -# actix = { workspace = true } -# actix-rt = { workspace = true } tokio = { workspace = true } [dev-dependencies] diff --git a/crates/forge-github/Cargo.toml b/crates/forge-github/Cargo.toml index 8e20769..d8fafc6 100644 --- a/crates/forge-github/Cargo.toml +++ b/crates/forge-github/Cargo.toml @@ -11,9 +11,7 @@ git-next-git = { workspace = true } clap = { workspace = true } # logging -console-subscriber = { workspace = true } tracing = { workspace = true } -tracing-subscriber = { workspace = true } # sha256 encoding (e.g. verify github webhooks) hmac = { workspace = true } @@ -37,28 +35,16 @@ toml = { workspace = true } # Secrets and Password secrecy = { workspace = true } -# Conventional Commit check -git-conventional = { workspace = true } - # Webhooks bytes = { workspace = true } ulid = { workspace = true } -warp = { workspace = true } # boilerplate derive_more = { workspace = true } -# file watcher -inotify = { workspace = true } - # # Actors -# actix = { workspace = true } -# actix-rt = { workspace = true } tokio = { workspace = true } -[dev-dependencies] -# Testing -assert2 = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/forge/Cargo.toml b/crates/forge/Cargo.toml index 551b277..51c03d7 100644 --- a/crates/forge/Cargo.toml +++ b/crates/forge/Cargo.toml @@ -15,9 +15,7 @@ git-next-forge-forgejo = { workspace = true, optional = true } git-next-forge-github = { workspace = true, optional = true } # logging -console-subscriber = { workspace = true } tracing = { workspace = true } -tracing-subscriber = { workspace = true } # base64 decoding base64 = { workspace = true } @@ -36,29 +34,16 @@ toml = { workspace = true } # Secrets and Password secrecy = { workspace = true } -# Conventional Commit check -git-conventional = { workspace = true } - # Webhooks bytes = { workspace = true } ulid = { workspace = true } -warp = { workspace = true } # boilerplate derive_more = { workspace = true } -# file watcher -inotify = { workspace = true } - # # Actors -# actix = { workspace = true } -# actix-rt = { workspace = true } tokio = { workspace = true } -[dev-dependencies] -# Testing -assert2 = { workspace = true } - [lints.clippy] nursery = { level = "warn", priority = -1 } # pedantic = "warn" diff --git a/crates/repo-actor/Cargo.toml b/crates/repo-actor/Cargo.toml index 3125c9e..4daf772 100644 --- a/crates/repo-actor/Cargo.toml +++ b/crates/repo-actor/Cargo.toml @@ -14,9 +14,7 @@ git-next-git = { workspace = true } git-next-forge = { workspace = true } # logging -console-subscriber = { workspace = true } tracing = { workspace = true } -tracing-subscriber = { workspace = true } # base64 decoding base64 = { workspace = true } @@ -41,23 +39,15 @@ git-conventional = { workspace = true } # Webhooks bytes = { workspace = true } ulid = { workspace = true } -warp = { workspace = true } # boilerplate derive_more = { workspace = true } -# file watcher -inotify = { workspace = true } - # Actors actix = { workspace = true } actix-rt = { workspace = true } tokio = { workspace = true } -[dev-dependencies] -# Testing -assert2 = { workspace = true } - [lints.clippy] nursery = { level = "warn", priority = -1 } # pedantic = "warn"