diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-07-20 23:44:15 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-07-20 23:44:15 +0200 |
| commit | 4930f050c56660c245e5976979babb66aea7bfd5 (patch) | |
| tree | 1a0cc823da65c4258f4434be98e92f814ae4fce2 /crates/server | |
| parent | chore: Commit (diff) | |
| download | atuin-4930f050c56660c245e5976979babb66aea7bfd5.zip | |
chore: Last big refactoring
Diffstat (limited to 'crates/server')
| -rw-r--r-- | crates/server/Cargo.toml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 7343c0fc..81aabbf8 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -12,25 +12,25 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -tracing-subscriber = { version = "0.3", features = ["ansi", "fmt", "registry", "env-filter", "json"] } -axum = "0.8" -config = { version = "0.15.8", default-features = false, features = ["toml"] } +tracing-subscriber = { workspace = true } +axum = { workspace = true } +config = { workspace = true } clap = { workspace = true } -eyre = "0.6" -fs-err = "3.1" -metrics = "0.24" -metrics-exporter-prometheus = { version = "0.18", default-features = false } -rand = { version = "0.8.5", features = ["std"] } -serde = { version = "1.0.202", features = ["derive"] } -sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "time", "postgres", "uuid", "sqlite", "regexp"] } -time = { version = "0.3.47", features = [ "serde-human-readable", "macros", "local-offset", "macros", "formatting", "parsing"] } -tokio = { version = "1", features = ["full"] } -tower = "0.5" -tower-http = { version = "0.6", features = ["trace"] } -tracing = "0.1" +eyre = { workspace = true } +fs-err = { workspace = true } +metrics = { workspace = true } +metrics-exporter-prometheus = { workspace = true } +rand = { workspace = true } +serde = { workspace = true } +sqlx = { workspace = true } +time = { workspace = true } +tokio = { workspace = true } +tower = { workspace = true } +tower-http = { workspace = true } +tracing = { workspace = true } turtle-common = { workspace = true } -url = "2.5.2" -uuid = { version = "1.9", features = ["v4", "v7", "serde"] } +url = { workspace = true } +uuid = { workspace = true } [package.metadata.docs.rs] all-features = true |
