mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-04-24 11:56:21 +02:00
18 lines
422 B
TOML
Executable file
18 lines
422 B
TOML
Executable file
[package]
|
|
name = "blackwall-controller"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "blackwall-controller"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
common = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
ring = { workspace = true }
|