diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 00:54:30 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-11 00:54:30 +0200 |
| commit | 5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8 (patch) | |
| tree | c64baa8d5866c8e339eaf660dd3f94f30a3f7d8a /crates/atuin-server/Cargo.toml | |
| parent | chore: Somewhat simplify sync code (diff) | |
| download | atuin-5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8.zip | |
chore: Move everything into one big crate
That helps remove duplicated code and rustc/cargo will now also show
dead code correctly.
Diffstat (limited to 'crates/atuin-server/Cargo.toml')
| -rw-r--r-- | crates/atuin-server/Cargo.toml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml deleted file mode 100644 index b7779899..00000000 --- a/crates/atuin-server/Cargo.toml +++ /dev/null @@ -1,45 +0,0 @@ -[package] -name = "atuin-server" -edition = "2024" -description = "server library for atuin" - -rust-version = { workspace = true } -version = { workspace = true } -authors = { workspace = true } -license = { workspace = true } -homepage = { workspace = true } -repository = { workspace = true } - -[lib] -name = "atuin_server" -path = "src/lib.rs" - -[[bin]] -name = "atuin-server" -path = "src/bin/main.rs" - -[dependencies] -atuin-common = { workspace = true } -atuin-server-database = { workspace = true } -atuin-server-postgres = { workspace = true } -atuin-server-sqlite = { workspace = true } - -tracing = { workspace = true } -time = { workspace = true } -eyre = { workspace = true } -config = { workspace = true } -serde = { workspace = true } -serde_json = { workspace = true } -rand = { workspace = true } -tokio = { workspace = true } -axum = "0.8" -fs-err = { workspace = true } -tower = { workspace = true } -tower-http = { version = "0.6", features = ["trace"] } -reqwest = { workspace = true } -argon2 = "0.5" -semver = { workspace = true } -metrics-exporter-prometheus = { version = "0.18", default-features = false } -metrics = "0.24" -clap = { workspace = true } -tracing-subscriber = { workspace = true } |
