2021-04-20 14:53:07 -06:00
|
|
|
[package]
|
|
|
|
name = "atuin-server"
|
|
|
|
edition = "2018"
|
|
|
|
description = "server library for atuin"
|
2023-04-14 13:18:58 -06:00
|
|
|
|
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2021-04-20 14:53:07 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-16 05:25:48 -06:00
|
|
|
atuin-common = { path = "../atuin-common", version = "14.0.1" }
|
2021-04-20 14:53:07 -06:00
|
|
|
|
2022-04-21 11:07:33 -06:00
|
|
|
tracing = "0.1"
|
2023-04-14 13:18:58 -06: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 02:45:20 -07:00
|
|
|
axum = "0.6.4"
|
2022-04-12 16:06:19 -06:00
|
|
|
http = "0.2"
|
2023-04-14 13:18:58 -06:00
|
|
|
fs-err = { workspace = true }
|
2022-04-13 11:29:18 -06:00
|
|
|
chronoutil = "0.2.3"
|
2022-04-21 11:07:33 -06:00
|
|
|
tower = "0.4"
|
2022-04-26 01:11:57 -06:00
|
|
|
tower-http = { version = "0.3", features = ["trace"] }
|
2023-04-14 13:18:58 -06:00
|
|
|
reqwest = { workspace = true }
|
2023-04-17 14:12:02 -06:00
|
|
|
argon2 = "0.5.0"
|
2023-05-21 09:21:51 -06:00
|
|
|
semver = { workspace = true }
|