23 lines
449 B
TOML
23 lines
449 B
TOML
[package]
|
|
name = "netsim-cxx"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "lib"]
|
|
doctest = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
cxx = { version = ">=1.0.85", features = ["c++17"] }
|
|
frontend-proto = { path = "../frontend-proto" }
|
|
netsim-common = { path = "../netsim-common" }
|
|
protobuf = "3.2.0"
|
|
protobuf-json-mapping = "3.2.0"
|
|
regex = "1.6.0"
|
|
lazy_static = "1.4.0"
|
|
|
|
[build-dependencies]
|
|
cxx-build = "1.0.92"
|