ipnet 2.12.0

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
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "ipnet"
version = "2.12.0"
authors = ["Kris Price <kris@krisprice.nz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
readme = "README.md"
keywords = [
    "IP",
    "CIDR",
    "network",
    "prefix",
    "subnet",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/krisprice/ipnet"

[badges.travis-ci]
repository = "krisprice/ipnet"

[features]
default = ["std"]
heapless = [
    "dep:heapless",
    "serde",
]
json = [
    "schemars08",
    "serde",
]
schemars = ["schemars08"]
schemars08 = ["dep:schemars08"]
schemars1 = ["dep:schemars1"]
ser_as_str = ["dep:heapless"]
serde = ["dep:serde"]
std = []

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

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

[dependencies.schemars08]
version = "0.8"
optional = true
default-features = false
package = "schemars"

[dependencies.schemars1]
version = "1"
optional = true
default-features = false
package = "schemars"

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

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