Initial commit
This commit is contained in:
commit
c1e7415871
56 changed files with 3225 additions and 0 deletions
24
tun/Cargo.toml
Normal file
24
tun/Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "tun"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
libc = "0.2"
|
||||
nix = { version = "0.25", features = ["ioctl"] }
|
||||
socket2 = "0.4"
|
||||
tokio = { version = "1.21", features = [] }
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
libloading = "0.7"
|
||||
widestring = "1.0"
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
anyhow = "1.0"
|
||||
bindgen = "0.61"
|
||||
hex-literal = "0.3"
|
||||
platforms = "3.0"
|
||||
reqwest = { version = "0.11", features = ["native-tls"] }
|
||||
sha2 = "0.10"
|
||||
tokio = { version = "1.21", features = ["rt"] }
|
||||
zip = { version = "0.6", features = ["deflate"] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue