1
Fork 0
dokku-hosts-api/Cargo.toml

16 lines
329 B
TOML
Raw Normal View History

2023-09-01 16:40:36 +01:00
[package]
name = "dokku-hosts-api"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-09-03 15:04:15 +01:00
async-std = "1.12.0"
2023-09-01 16:40:36 +01:00
axum = "0.6.20"
2023-09-01 17:11:15 +01:00
nix = { version="0.27.1", features=["user"]}
2023-09-03 15:04:15 +01:00
serde = { version="1.0.171", features=["derive"]}
2023-09-01 16:40:36 +01:00
tokio = { version="1.32.0", features=["macros", "rt-multi-thread"]}
2023-09-01 17:14:02 +01:00
[profile.release]
strip = true
lto = true