21 lines
572 B
TOML
21 lines
572 B
TOML
[package]
|
|
name = "iptool"
|
|
version = "0.1.0"
|
|
authors = ["Finn Behrens <fin@nyantec.com>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/nyantec/iptool"
|
|
license = "MirOS"
|
|
keywords = [ "linux", "network" ]
|
|
categories = [ "hardware-support" ]
|
|
description = "Rust linux iptool helpers for network interfaces"
|
|
homepage = "https://github.com/nyantec/iptool"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
|
|
pnet = { version = "0.28", optional = true } |