19 lines
461 B
TOML
19 lines
461 B
TOML
[package]
|
|
name = "mxgw-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "mxgw"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
zb-mom-ww-mxgateway-client = { path = "../.." }
|
|
prost-types = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal", "sync", "time"] }
|