24 lines
694 B
TOML
24 lines
694 B
TOML
[package]
|
|
name = "protomask-tun"
|
|
version = "0.1.0"
|
|
authors = ["Evan Pratten <ewpratten@gmail.com>"]
|
|
edition = "2021"
|
|
description = "An async interface to Linux TUN devices"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/ewpratten/protomask/protomask-tun"
|
|
documentation = "https://docs.rs/protomask-tun"
|
|
repository = "https://github.com/ewpratten/protomask"
|
|
license = "GPL-3.0"
|
|
keywords = []
|
|
categories = []
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
tokio = { version = "1.29.1", features = ["sync", "rt"] }
|
|
log = "0.4.19"
|
|
thiserror = "1.0.43"
|
|
tun-tap = "0.1.3"
|
|
rtnetlink = "0.13.0"
|
|
futures = "0.3.28"
|
|
ipnet = "^2.8.0"
|