23 lines
536 B
TOML
23 lines
536 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 }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
utoipa = { version = "4", features = ["axum_extras"] }
|
|
|
|
base = { path = "../base" }
|