chore: remove unused Rust dependencies (#3492)

This commit is contained in:
Alejandro González 2025-04-12 17:42:45 +02:00 committed by GitHub
parent 8ad5e011ca
commit 487bdd1e48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 224 additions and 752 deletions

947
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,18 +7,7 @@ edition = "2021"
[dependencies] [dependencies]
theseus = { path = "../../packages/app-lib", features = ["cli"] } theseus = { path = "../../packages/app-lib", features = ["cli"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
thiserror = "1.0"
url = "2.2"
webbrowser = "0.8.13" webbrowser = "0.8.13"
dunce = "1.0.3"
futures = "0.3"
uuid = { version = "1.1", features = ["serde", "v4"] }
tracing = "0.1.37" tracing = "0.1.37"
tracing-subscriber = "0.3.18"
tracing-error = "0.2.0"

View File

@ -28,12 +28,9 @@ tauri-plugin-single-instance = { version = "2.2.0" }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
thiserror = "1.0" thiserror = "1.0"
futures = "0.3"
daedalus = { path = "../../packages/daedalus" } daedalus = { path = "../../packages/daedalus" }
chrono = "0.4.26" chrono = "0.4.26"
dirs = "5.0.1"
url = "2.2" url = "2.2"
uuid = { version = "1.1", features = ["serde", "v4"] } uuid = { version = "1.1", features = ["serde", "v4"] }
os_info = "3.7.0" os_info = "3.7.0"
@ -41,9 +38,6 @@ os_info = "3.7.0"
tracing = "0.1.37" tracing = "0.1.37"
tracing-error = "0.2.0" tracing-error = "0.2.0"
lazy_static = "1"
once_cell = "1"
dashmap = "6.0.1" dashmap = "6.0.1"
paste = "1.0.15" paste = "1.0.15"

View File

@ -22,7 +22,6 @@ reqwest = { version = "0.12.5", default-features = false, features = [
"rustls-tls-native-roots", "rustls-tls-native-roots",
] } ] }
async_zip = { version = "0.0.17", features = ["full"] } async_zip = { version = "0.0.17", features = ["full"] }
semver = "1.0"
chrono = { version = "0.4", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] }
bytes = "1.6.0" bytes = "1.6.0"
rust-s3 = { version = "0.33.0", default-features = false, features = [ rust-s3 = { version = "0.33.0", default-features = false, features = [
@ -39,4 +38,3 @@ tracing-error = "0.2.0"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-futures = { version = "0.2.5", features = ["futures", "tokio"] }

View File

@ -21,7 +21,6 @@ prometheus = "0.13.4"
actix-web-prom = { version = "0.9.0", features = ["process"] } actix-web-prom = { version = "0.9.0", features = ["process"] }
tracing = "0.1.41" tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-actix-web = "0.7.16" tracing-actix-web = "0.7.16"
console-subscriber = "0.4.1" console-subscriber = "0.4.1"
@ -29,7 +28,6 @@ tokio = { version = "1.35.1", features = ["sync", "rt-multi-thread"] }
tokio-stream = "0.1.14" tokio-stream = "0.1.14"
futures = "0.3.30" futures = "0.3.30"
futures-timer = "3.0.2"
futures-util = "0.3.30" futures-util = "0.3.30"
async-trait = "0.1.70" async-trait = "0.1.70"
dashmap = "5.4.0" dashmap = "5.4.0"
@ -42,14 +40,11 @@ hyper = { version = "0.14", features = ["full"] }
hyper-tls = "0.5.0" hyper-tls = "0.5.0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0" serde_json = "1.0"
serde_cbor = "0.11"
serde_with = "3.0.0" serde_with = "3.0.0"
chrono = { version = "0.4.26", features = ["serde"] } chrono = { version = "0.4.26", features = ["serde"] }
yaserde = "0.12.0" yaserde = "0.12.0"
yaserde_derive = "0.12.0" yaserde_derive = "0.12.0"
xml-rs = "0.8.15"
rand = "0.8.5" rand = "0.8.5"
rand_chacha = "0.3.1" rand_chacha = "0.3.1"
@ -144,4 +139,4 @@ actix-http = "3.4.0"
[build-dependencies] [build-dependencies]
dotenv-build = "0.1.1" dotenv-build = "0.1.1"
chrono = "0.4.38" chrono = "0.4.38"
iana-time-zone = "0.1.60" iana-time-zone = "0.1.60"

View File

@ -9,7 +9,6 @@ bytes = "1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
serde_ini = "0.2.0" serde_ini = "0.2.0"
toml = "0.8.12"
sha1_smol = { version = "1.0.0", features = ["std"] } sha1_smol = { version = "1.0.0", features = ["std"] }
sha2 = "0.10.8" sha2 = "0.10.8"
url = "2.2" url = "2.2"
@ -18,7 +17,6 @@ zip = "0.6.5"
async_zip = { version = "0.0.17", features = ["chrono", "tokio-fs", "deflate", "bzip2", "zstd", "deflate64"] } async_zip = { version = "0.0.17", features = ["chrono", "tokio-fs", "deflate", "bzip2", "zstd", "deflate64"] }
flate2 = "1.0.28" flate2 = "1.0.28"
tempfile = "3.5.0" tempfile = "3.5.0"
urlencoding = "2.1.3"
dashmap = { version = "6.0.1", features = ["serde"] } dashmap = { version = "6.0.1", features = ["serde"] }
chrono = { version = "0.4.19", features = ["serde"] } chrono = { version = "0.4.19", features = ["serde"] }

View File

@ -17,5 +17,4 @@ readme = "README.md"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] }
bytes = "1"
thiserror = "1.0" thiserror = "1.0"