Add base subcrates
This commit is contained in:
22
crates/wtfnet-cli/Cargo.toml
Normal file
22
crates/wtfnet-cli/Cargo.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[package]
|
||||
name = "wtfnet-cli"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[[bin]]
|
||||
name = "wtfn"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||
wtfnet-core = { path = "../wtfnet-core" }
|
||||
wtfnet-platform = { path = "../wtfnet-platform" }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
wtfnet-platform-windows = { path = "../wtfnet-platform-windows" }
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
wtfnet-platform-linux = { path = "../wtfnet-platform-linux" }
|
||||
Reference in New Issue
Block a user