diff options
| author | Andrew Aylett <andrew@aylett.co.uk> | 2025-01-07 20:04:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-07 20:04:48 +0000 |
| commit | 80c41841a9a8e9f1b5dee31956e2e9efa97c74e5 (patch) | |
| tree | 81456182bd7a72b766309ca3abd2b155f683d58a /crates/atuin-server | |
| parent | chore(deps): bump debian (#2510) (diff) | |
| download | atuin-80c41841a9a8e9f1b5dee31956e2e9efa97c74e5.zip | |
chore: Remove unneeded dependencies (#2523)
These dependencies are unused in actual code, and the test I've removed
is a remnant from a move to use an external library -- it was useful to
show that the mechanical transformation was correct, but it's only
testing that library nowadays.
Diffstat (limited to 'crates/atuin-server')
| -rw-r--r-- | crates/atuin-server/Cargo.toml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index 02c36b7f..8de87f2f 100644 --- a/crates/atuin-server/Cargo.toml +++ b/crates/atuin-server/Cargo.toml @@ -14,14 +14,12 @@ repository = { workspace = true } atuin-common = { path = "../atuin-common", version = "18.4.0" } atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" } -tracing = "0.1" +tracing = { workspace = true } time = { workspace = true } eyre = { workspace = true } -uuid = { workspace = true } config = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } -base64 = { workspace = true } rand = { workspace = true } tokio = { workspace = true } async-trait = { workspace = true } @@ -32,7 +30,6 @@ tower = { workspace = true } tower-http = { version = "0.5", features = ["trace"] } reqwest = { workspace = true } rustls = { version = "0.23", features = ["ring"], default-features = false } -rustls-pemfile = "2.1" argon2 = "0.5" semver = { workspace = true } metrics-exporter-prometheus = "0.12.1" |
