2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-server"
|
2024-01-26 18:59:06 +01:00
|
|
|
edition = "2021"
|
2021-04-20 22:53:07 +02:00
|
|
|
description = "server library for atuin"
|
2023-04-14 21:18:58 +02:00
|
|
|
|
2023-09-11 10:26:05 +02:00
|
|
|
rust-version = { workspace = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-26 12:37:54 +01:00
|
|
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
|
|
|
atuin-server-database = { path = "../atuin-server-database", version = "18.0.2" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
2022-04-21 19:07:33 +02:00
|
|
|
tracing = "0.1"
|
2023-09-11 10:26:05 +02:00
|
|
|
time = { workspace = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
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 }
|
2024-01-28 14:33:45 +01:00
|
|
|
axum = "0.7.4"
|
|
|
|
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
|
2023-04-14 21:18:58 +02:00
|
|
|
fs-err = { workspace = true }
|
2022-04-21 19:07:33 +02:00
|
|
|
tower = "0.4"
|
2024-01-28 14:33:45 +01:00
|
|
|
tower-http = { version = "0.5.1", features = ["trace"] }
|
2023-04-14 21:18:58 +02:00
|
|
|
reqwest = { workspace = true }
|
2023-12-27 15:15:48 +01:00
|
|
|
rustls = "0.21"
|
2024-01-28 14:33:45 +01:00
|
|
|
rustls-pemfile = "2.0"
|
2024-01-22 11:00:25 +01:00
|
|
|
argon2 = "0.5.3"
|
2023-05-21 17:21:51 +02:00
|
|
|
semver = { workspace = true }
|
2023-11-17 00:18:13 +01:00
|
|
|
metrics-exporter-prometheus = "0.12.1"
|
|
|
|
metrics = "0.21.1"
|