rvault/crates/server/Cargo.toml
2024-04-24 17:02:34 +02:00

21 lines
No EOL
509 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2021"
# [target.x86_64-unknown-linux-gnu]
# rustflags = ["-C", "linker=clang", "-C", "link-arg=-fuse-ld=lld"]
[lints]
workspace = true
[dependencies]
log = { workspace = true }
env_logger = { workspace = true }
tokio = { workspace = true, features=["full"] }
tower = { workspace = true, features = []}
axum = { workspace = true }
utoipa = { version = "4", features = ["axum_extras"] }
serde = "1.0.197"
serde_json = "1.0.1"
base = { path = "../base" }