2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-server"
|
2022-09-13 21:03:52 +02:00
|
|
|
version = "11.0.0"
|
2021-04-20 22:53:07 +02:00
|
|
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT"
|
|
|
|
description = "server library for atuin"
|
2021-04-21 22:32:21 +02:00
|
|
|
homepage = "https://atuin.sh"
|
|
|
|
repository = "https://github.com/ellie/atuin"
|
2021-04-20 22:53:07 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-09-13 21:03:52 +02:00
|
|
|
atuin-common = { path = "../atuin-common", version = "11.0.0" }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
2022-04-21 19:07:33 +02:00
|
|
|
tracing = "0.1"
|
2021-04-20 22:53:07 +02:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
eyre = "0.6"
|
2022-04-22 22:38:37 +02:00
|
|
|
uuid = { version = "1.0", features = ["v4"] }
|
2021-04-20 22:53:07 +02:00
|
|
|
whoami = "1.1.2"
|
2022-05-16 23:14:04 +02:00
|
|
|
config = { version = "0.13", default-features = false, features = ["toml"] }
|
2022-05-03 08:59:12 +02:00
|
|
|
serde = { version = "1.0.137", features = ["derive"] }
|
2022-05-05 10:01:06 +02:00
|
|
|
serde_json = "1.0.81"
|
2021-04-20 22:53:07 +02:00
|
|
|
sodiumoxide = "0.2.6"
|
|
|
|
base64 = "0.13.0"
|
2021-11-17 12:51:30 +01:00
|
|
|
rand = "0.8.4"
|
2021-04-20 22:53:07 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-09-13 21:03:52 +02:00
|
|
|
sqlx = { version = "0.5", features = [
|
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"chrono",
|
|
|
|
"postgres",
|
|
|
|
] }
|
2021-04-20 22:53:07 +02:00
|
|
|
async-trait = "0.1.49"
|
2022-04-13 00:06:19 +02:00
|
|
|
axum = "0.5"
|
|
|
|
http = "0.2"
|
2022-04-13 19:08:49 +02:00
|
|
|
fs-err = "2.7"
|
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"] }
|