11 lines
372 B
TOML
11 lines
372 B
TOML
|
[package]
|
||
|
name = "ncpf"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
libepf = { version = "0.1.0", path = "../libepf" }
|
||
|
clap = { version = "4.2", features = ["derive", "cargo"] }
|
||
|
tokio = { version = "1.28.0", features = ["rt-multi-thread", "macros", "net", "io-std"] }
|