Files
ipnetwork/Cargo.toml
Abhishek Chanda eddcc026cb Uprev for release
2018-03-15 08:45:16 +00:00

27 lines
859 B
TOML

[package]
name = "ipnetwork"
version = "0.12.8" # When updating version, also modify html_root_url in the lib.rs
authors = ["Abhishek Chanda <abhishek.becs@gmail.com>", "Linus Färnstrand <faern@faern.net>"]
description = "A library to work with IP CIDRs in Rust, heavily WIP"
license = "Apache-2.0"
repository = "https://github.com/achanda/ipnetwork"
keywords = ["network", "ip", "address"]
readme = "README.md"
documentation = "https://docs.rs/ipnetwork/"
categories = ["network-programming", "os"]
[dependencies]
clippy = {version = "0.0.104", optional = true}
serde = { version = ">=0.8.0, <2.0", optional = true }
serde_derive = { version = ">=0.8.0, <2.0", optional = true }
[badges]
travis-ci = { repository = "achanda/ipnetwork" }
[features]
default = []
dev = ["clippy"]
ipv6-iterator = []
ipv6-methods = []
with-serde = ["serde", "serde_derive"]