poptrie 0.2.0

A pure-rust implementation of poptrie
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 = "2024"
rust-version = "1.87"
name = "poptrie"
version = "0.2.0"
authors = ["Nicolas Kagami <nicolaskagami@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-rust implementation of poptrie"
homepage = "https://github.com/nicolaskagami/poptrie"
readme = "README.md"
keywords = [
    "poptrie",
    "ip",
    "prefix",
    "trie",
]
categories = [
    "network-programming",
    "data-structures",
    "no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/nicolaskagami/poptrie"

[features]
cidr = ["dep:cidr"]
default = []
ipnet = ["dep:ipnet"]

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

[[test]]
name = "tests"
path = "tests/tests.rs"

[[bench]]
name = "lpm_benches"
path = "benches/lpm_benches.rs"
harness = false

[dependencies.cidr]
version = "0.3"
optional = true
default-features = false

[dependencies.ipnet]
version = "2"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.generic-tests]
version = "0.1"

[dev-dependencies.proptest]
version = "1.10.0"

[dev-dependencies.rand]
version = "0.10.0"

[dev-dependencies.rand_chacha]
version = "0.10.0"