refactor: remove unused dependencies
All checks were successful
Rust / build (push) Successful in 1m34s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful

This commit is contained in:
Paul Campbell 2024-08-03 22:49:55 +01:00
parent 421e85cb0b
commit 850e990ab4
5 changed files with 2 additions and 42 deletions

15
Cargo.lock generated
View file

@ -945,8 +945,6 @@ dependencies = [
"actix-rt", "actix-rt",
"anyhow", "anyhow",
"assert2", "assert2",
"async-trait",
"base64 0.22.1",
"bytes", "bytes",
"clap", "clap",
"derive-with", "derive-with",
@ -964,7 +962,6 @@ dependencies = [
"rand", "rand",
"secrecy", "secrecy",
"sendmail", "sendmail",
"serde",
"serde_json", "serde_json",
"standardwebhooks", "standardwebhooks",
"test-log", "test-log",
@ -982,7 +979,6 @@ name = "git-next-core"
version = "0.13.0" version = "0.13.0"
dependencies = [ dependencies = [
"actix", "actix",
"actix-rt",
"assert2", "assert2",
"async-trait", "async-trait",
"derive-with", "derive-with",
@ -999,9 +995,9 @@ dependencies = [
"serde_json", "serde_json",
"test-log", "test-log",
"thiserror", "thiserror",
"time",
"toml", "toml",
"tracing", "tracing",
"tracing-subscriber",
"ulid", "ulid",
] ]
@ -1011,9 +1007,6 @@ version = "0.13.0"
dependencies = [ dependencies = [
"assert2", "assert2",
"async-trait", "async-trait",
"base64 0.22.1",
"bytes",
"derive_more",
"git-next-core", "git-next-core",
"kxio", "kxio",
"rand", "rand",
@ -1021,9 +1014,7 @@ dependencies = [
"serde", "serde",
"serde_json", "serde_json",
"tokio", "tokio",
"toml",
"tracing", "tracing",
"ulid",
] ]
[[package]] [[package]]
@ -1032,8 +1023,6 @@ version = "0.13.0"
dependencies = [ dependencies = [
"assert2", "assert2",
"async-trait", "async-trait",
"base64 0.22.1",
"bytes",
"clap", "clap",
"derive_more", "derive_more",
"git-next-core", "git-next-core",
@ -1046,9 +1035,7 @@ dependencies = [
"serde_json", "serde_json",
"sha2", "sha2",
"tokio", "tokio",
"toml",
"tracing", "tracing",
"ulid",
] ]
[[package]] [[package]]

View file

@ -31,18 +31,12 @@ kxio = { workspace = true }
tracing = { workspace = true } tracing = { workspace = true }
tracing-subscriber = { workspace = true } tracing-subscriber = { workspace = true }
# git
async-trait = { workspace = true }
# Conventional Commit check # Conventional Commit check
git-conventional = { workspace = true } git-conventional = { workspace = true }
# TOML parsing # TOML parsing
toml = { workspace = true } toml = { workspace = true }
# base64 decoding
base64 = { workspace = true }
# Actors # Actors
actix = { workspace = true } actix = { workspace = true }
actix-rt = { workspace = true } actix-rt = { workspace = true }
@ -54,7 +48,6 @@ anyhow = { workspace = true }
thiserror = { workspace = true } thiserror = { workspace = true }
# Webhooks # Webhooks
serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
ulid = { workspace = true } ulid = { workspace = true }
time = { workspace = true } time = { workspace = true }

View file

@ -14,14 +14,12 @@ github = []
[dependencies] [dependencies]
# logging # logging
tracing = { workspace = true } tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# fs/network # fs/network
kxio = { workspace = true } kxio = { workspace = true }
# Actors # Actors
actix = { workspace = true } actix = { workspace = true }
actix-rt = { workspace = true }
# TOML parsing # TOML parsing
serde = { workspace = true } serde = { workspace = true }
@ -37,6 +35,7 @@ async-trait = { workspace = true }
# Webhooks # Webhooks
ulid = { workspace = true } ulid = { workspace = true }
time = { workspace = true }
# boilerplate # boilerplate
derive_more = { workspace = true } derive_more = { workspace = true }

View file

@ -12,9 +12,6 @@ git-next-core = { workspace = true }
# logging # logging
tracing = { workspace = true } tracing = { workspace = true }
# base64 decoding
base64 = { workspace = true }
# git # git
async-trait = { workspace = true } async-trait = { workspace = true }
@ -24,18 +21,10 @@ kxio = { workspace = true }
# TOML parsing # TOML parsing
serde = { workspace = true } serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
toml = { workspace = true }
# Secrets and Password # Secrets and Password
secrecy = { workspace = true } secrecy = { workspace = true }
# Webhooks
bytes = { workspace = true }
ulid = { workspace = true }
# boilerplate
derive_more = { workspace = true }
# # Actors # # Actors
tokio = { workspace = true } tokio = { workspace = true }

View file

@ -20,9 +20,6 @@ hmac = { workspace = true }
sha2 = { workspace = true } sha2 = { workspace = true }
hex = { workspace = true } hex = { workspace = true }
# base64 decoding
base64 = { workspace = true }
# git # git
async-trait = { workspace = true } async-trait = { workspace = true }
@ -32,15 +29,10 @@ kxio = { workspace = true }
# TOML parsing # TOML parsing
serde = { workspace = true } serde = { workspace = true }
serde_json = { workspace = true } serde_json = { workspace = true }
toml = { workspace = true }
# Secrets and Password # Secrets and Password
secrecy = { workspace = true } secrecy = { workspace = true }
# Webhooks
bytes = { workspace = true }
ulid = { workspace = true }
# boilerplate # boilerplate
derive_more = { workspace = true } derive_more = { workspace = true }