32 lines
636 B
TOML
32 lines
636 B
TOML
[package]
|
|
name = "nym-kcp"
|
|
description = "KCP protocol implementation for Nym"
|
|
version = "0.1.0"
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "nym_kcp"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "wire_format"
|
|
path = "bin/wire_format/main.rs"
|
|
|
|
[[bin]]
|
|
name = "session"
|
|
path = "bin/session/main.rs"
|
|
|
|
[dependencies]
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
bytes = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
log = { workspace = true }
|
|
ansi_term = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.11"
|