27 lines
733 B
TOML
27 lines
733 B
TOML
[package]
|
|
name = "vnj"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "vnj"
|
|
path = "bin/main.rs"
|
|
|
|
[lib]
|
|
name = "vnj"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.8", features = ["macros", "multipart"] }
|
|
clap = { version = "4.5.21", features = ["derive"] }
|
|
color-eyre = "0.6.3"
|
|
eyre = "0.6.12"
|
|
jiff = { version = "0.1.14", features = ["serde"] }
|
|
parking_lot = "0.12.3"
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "net", "sync", "macros", "time", "parking_lot", "signal"] }
|
|
toml = "0.8.19"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
url = { version = "2.5.3", features = ["serde"] }
|
|
uuid = { version = "1.11.0", features = ["v4"] }
|