ipnet 2.10.1

Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.
Documentation
[badges.travis-ci]
repository = "krisprice/ipnet"

[dependencies.heapless]
optional = true
version = "0"

[dependencies.schemars]
optional = true
version = "0.8"

[dependencies.serde]
default-features = false
features = ["derive"]
optional = true
package = "serde"
version = "1"

[dev-dependencies.serde_test]
version = "1"

[features]
default = ["std"]
json = ["serde", "schemars"]
ser_as_str = ["heapless"]
std = []

[lib]
name = "ipnet"
path = "src/lib.rs"

[package]
authors = ["Kris Price <kris@krisprice.nz>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["network-programming"]
description = "Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust's standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain."
documentation = "https://docs.rs/ipnet"
edition = "2018"
keywords = ["IP", "CIDR", "network", "prefix", "subnet"]
license = "MIT OR Apache-2.0"
name = "ipnet"
readme = "README.md"
repository = "https://github.com/krisprice/ipnet"
version = "2.10.1"