[package]
name = "ipaddress"
version = "0.2.8"
authors = ["Meno Abels <meno.abels@adviser.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "an library to handle ipv4 and ipv6 numbers"
homepage = "https://github.com/mabels/ipaddress"
documentation = "https://docs.rs/ipaddress/0.1.1/ipaddress/"
readme = "README.md"
keywords = [
"ip",
"network",
]
license = "MIT"
repository = "https://github.com/mabels/ipaddress.git"
[lib]
name = "ipaddress"
path = "src/lib.rs"
[[test]]
name = "test_ipaddress"
path = "tests/test_ipaddress.rs"
[[test]]
name = "test_ipv4"
path = "tests/test_ipv4.rs"
[[test]]
name = "test_ipv6"
path = "tests/test_ipv6.rs"
[[test]]
name = "test_ipv6_loopback"
path = "tests/test_ipv6_loopback.rs"
[[test]]
name = "test_ipv6_mapped"
path = "tests/test_ipv6_mapped.rs"
[[test]]
name = "test_ipv6_unspec"
path = "tests/test_ipv6_unspec.rs"
[[test]]
name = "test_prefix128"
path = "tests/test_prefix128.rs"
[[test]]
name = "test_prefix32"
path = "tests/test_prefix32.rs"
[[test]]
name = "test_rle"
path = "tests/test_rle.rs"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.libc]
version = "0.2.141"
[dependencies.num]
version = "0.4.0"
[dependencies.num-integer]
version = "0.1.45"
[dependencies.num-traits]
version = "0.2.15"
[dependencies.regex]
version = "1.7.3"