17 lines
393 B
TOML
17 lines
393 B
TOML
[package]
|
|
name = "omyacid"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
nzr-api = { path = "../nzr-api" }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
axum = "0.7"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
anyhow = "1"
|
|
askama = "0.12"
|
|
moka = { version = "0.12.8", features = ["future"] }
|
|
|
|
[dev-dependencies]
|
|
nzr-api = { path = "../nzr-api", features = ["mock"] }
|