18 lines
366 B
TOML
18 lines
366 B
TOML
[package]
|
|
name = "admin_cli"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "minauthator-admin"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
fully_pub = { workspace = true }
|
|
argh = { workspace = true }
|
|
tokio = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
|
|
kernel = { path = "../kernel" }
|