aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server/Cargo.toml
blob: 95c402ccae020ac52222bf3d24c0807023fbfbb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[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 = { path = "../atuin-common", version = "18.12.0-beta.3" }
atuin-server-database = { path = "../atuin-server-database", version = "18.12.0-beta.3" }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.12.0-beta.3" }
atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.12.0-beta.3" }

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 }
async-trait = { workspace = true }
axum = "0.7"
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 }