1[package]
2name = "netsim-cli"
3version = "0.3.13"
4edition = "2021"
5build = "build.rs"
6
7[lib]
8crate-type = ["staticlib", "lib"]
9doctest = false
10test = false
11
12[dependencies]
13hex = "0.4.3"
14clap = { version = "4.1.8", default-features = false, features = [
15    "derive",
16    "error-context",
17    "help",
18    "std",
19    "usage",
20] }
21netsim-proto = { path = "../proto" }
22netsim-common = { path = "../common" }
23protobuf = "3.2.0"
24cxx = { version = ">=1.0.85", features = ["c++17"] }
25log = "0.4.17"
26tracing = "0.1"
27grpcio =  {version= "0.13.0", default-features = false, features = ["protobufv3-codec"]}
28
29[build-dependencies]
30cxx-build = "1.0.92"
31