This commit is contained in:
Conrad Kramer 2023-04-17 11:58:31 -04:00
parent b37086e8f6
commit 1a13b77295
20 changed files with 767 additions and 468 deletions

View file

@ -3,7 +3,11 @@ name = "tun-async"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["tokio"]
tokio = ["dep:tokio"]
[dependencies]
tun = { version = "0.1", path = "../tun" }
fehler = "1.0"
tun = { path = "../tun" }
tokio = { version = "1.0", features = ["net"], optional = true }