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