2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-server"
|
|
|
|
edition = "2018"
|
|
|
|
description = "server library for atuin"
|
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]
|
2023-05-28 20:39:45 +02:00
|
|
|
atuin-common = { path = "../atuin-common", version = "15.0.0" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
2022-04-21 19:07:33 +02:00
|
|
|
tracing = "0.1"
|
2023-04-14 21:18:58 +02:00
|
|
|
chrono = { workspace = true }
|
|
|
|
eyre = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
whoami = { workspace = true }
|
|
|
|
config = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
sodiumoxide = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
sqlx = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
2023-02-10 10:45:20 +01:00
|
|
|
axum = "0.6.4"
|
2022-04-13 00:06:19 +02:00
|
|
|
http = "0.2"
|
2023-04-14 21:18:58 +02:00
|
|
|
fs-err = { workspace = true }
|
2022-04-13 19:29:18 +02:00
|
|
|
chronoutil = "0.2.3"
|
2022-04-21 19:07:33 +02:00
|
|
|
tower = "0.4"
|
2022-04-26 09:11:57 +02:00
|
|
|
tower-http = { version = "0.3", features = ["trace"] }
|
2023-04-14 21:18:58 +02:00
|
|
|
reqwest = { workspace = true }
|
2023-04-17 22:12:02 +02:00
|
|
|
argon2 = "0.5.0"
|
2023-05-21 17:21:51 +02:00
|
|
|
semver = { workspace = true }
|