1
0
Fork 0
mirror of https://github.com/zhaofengli/attic.git synced 2025-03-05 16:27:06 +00:00
attic/server/Cargo.toml

102 lines
1.8 KiB
TOML
Raw Normal View History

2022-12-31 17:01:07 -07:00
[package]
name = "attic-server"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "attic_server"
path = "src/lib.rs"
[[bin]]
name = "atticd"
path = "src/main.rs"
doc = false
[[bin]]
name = "atticadm"
path = "src/adm/main.rs"
doc = false
[dependencies]
attic = { path = "../attic", default-features = false, features = [ "tokio" ] }
2023-01-08 00:57:22 -07:00
attic-token = { path = "../token" }
2022-12-31 17:01:07 -07:00
2023-05-28 15:21:59 -06:00
anyhow = "1.0.71"
async-stream = "0.3.5"
async-trait = "0.1.68"
2024-06-01 13:47:27 -06:00
aws-config = "1.5.0"
aws-sdk-s3 = "1.32.0"
2024-06-01 13:47:27 -06:00
axum = "0.7.5"
axum-macros = "0.4.1"
2024-06-01 13:47:27 -06:00
base64 = "0.22.1"
2023-03-05 11:05:11 -07:00
bytes = "1.4.0"
2023-05-28 15:21:59 -06:00
chrono = "0.4.24"
clap = { version = "4.3", features = ["derive"] }
2022-12-31 17:01:07 -07:00
derivative = "2.2.0"
2023-05-28 15:21:59 -06:00
digest = "0.10.7"
displaydoc = "0.2.4"
enum-as-inner = "0.6.0"
2023-05-28 15:21:59 -06:00
fastcdc = "3.0.3"
futures = "0.3.28"
2022-12-31 17:01:07 -07:00
hex = "0.4.3"
2024-06-01 13:47:27 -06:00
http-body-util = "0.1.1"
2022-12-31 17:01:07 -07:00
humantime = "2.1.0"
humantime-serde = "1.1.1"
2023-03-05 11:05:11 -07:00
itoa = "=1.0.5"
2022-12-31 17:01:07 -07:00
maybe-owned = "0.3.4"
rand = "0.8.5"
2023-05-28 15:21:59 -06:00
regex = "1.8.3"
2023-03-05 11:05:11 -07:00
ryu = "1.0.13"
2022-12-31 17:01:07 -07:00
sha2 = { version = "0.10.6", features = ["asm"] }
2023-05-28 15:21:59 -06:00
serde = "1.0.163"
serde_json = "1.0.96"
2023-05-28 15:21:59 -06:00
serde_with = "3.0.0"
2023-05-28 15:21:59 -06:00
tokio-util = { version = "0.7.8", features = [ "io" ] }
toml = "0.8.8"
2024-06-01 13:47:27 -06:00
tower-http = { version = "0.5.2", features = [ "catch-panic", "trace" ] }
2022-12-31 17:01:07 -07:00
tracing = "0.1.37"
tracing-error = "0.2.0"
2023-05-28 15:21:59 -06:00
tracing-subscriber = { version = "0.3.17", features = [ "json" ] }
uuid = { version = "1.3.3", features = ["v4"] }
console-subscriber = "0.2.0"
2023-05-28 15:21:59 -06:00
xdg = "2.5.0"
rsa = "0.9.3"
2022-12-31 17:01:07 -07:00
[dependencies.async-compression]
2023-05-28 15:21:59 -06:00
version = "0.4.0"
2022-12-31 17:01:07 -07:00
features = [
"tokio",
"xz",
"zstd",
"brotli",
]
[dependencies.sea-orm]
version = "0.12.10"
2022-12-31 17:01:07 -07:00
features = [
"runtime-tokio-rustls",
"macros",
"sqlx-postgres",
"sqlx-sqlite",
"debug-print",
]
[dependencies.sea-orm-migration]
version = "0.12.10"
2022-12-31 17:01:07 -07:00
[dependencies.tokio]
2023-05-28 15:21:59 -06:00
version = "1.28.2"
2022-12-31 17:01:07 -07:00
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"rt-multi-thread",
"sync",
]
2023-01-14 23:55:10 -07:00
[dev-dependencies]
tokio-test = "0.4.2"