18 lines
381 B
TOML
18 lines
381 B
TOML
[package]
|
|
name = "harmony_auth_cli"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "harmony-auth"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
harmony_auth = { path = "../harmony_auth" }
|
|
clap.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|