tun 0.5.3

TUN device creation and handling.
Documentation
[[example]]
name = "read-async"
required-features = ["async", "tokio/rt-multi-thread"]

[[example]]
name = "read-async-codec"
required-features = ["async", "tokio/rt-multi-thread"]

[[example]]
name = "ping-tun"
required-features = ["async", "tokio/rt-multi-thread"]
[dependencies.libc]
version = "0.2"

[dependencies.thiserror]
version = "1"
[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.packet]
version = "0.1"

[features]
async = ["tokio", "tokio-util", "bytes", "byteorder", "futures-core"]

[package]
authors = ["meh. <meh@schizofreni.co>"]
description = "TUN device creation and handling."
edition = "2018"
keywords = ["tun", "network", "tunnel", "bindings"]
license = "WTFPL"
name = "tun"
repository = "https://github.com/meh/rust-tun"
version = "0.5.3"
[target."cfg(any(target_os = \"linux\", target_os = \"macos\"))".dependencies.ioctl]
package = "ioctl-sys"
version = "0.6"
[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"ios\"))".dependencies.byteorder]
optional = true
version = "1"

[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"ios\"))".dependencies.bytes]
optional = true
version = "1"

[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"ios\"))".dependencies.futures-core]
optional = true
version = "0.3"

[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"ios\"))".dependencies.tokio]
features = ["net", "macros"]
optional = true
version = "1"

[target."cfg(any(target_os = \"linux\", target_os = \"macos\", target_os = \"ios\"))".dependencies.tokio-util]
features = ["codec"]
optional = true
version = "0.6"