aboutsummaryrefslogtreecommitdiff
path: root/rust/cli/Cargo.toml
blob: 3df2f833d5fecf704bf243b71160f01bd94f6188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "netsim-cli"
version = "0.2.3"
edition = "2021"
build = "build.rs"

[lib]
crate-type = ["staticlib", "lib"]
doctest = false
test = false

[dependencies]
hex = "0.4.3"
clap = { version = "4.1.8", default-features = false, features = [
    "derive",
    "error-context",
    "help",
    "std",
    "usage",
] }
netsim-proto = { path = "../proto" }
netsim-common = { path = "../common" }
protobuf = "3.2.0"
cxx = { version = ">=1.0.85", features = ["c++17"] }
log = "0.4.17"

[build-dependencies]
cxx-build = "1.0.92"