-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "poptrie"
version = "0.2.0"
description = "A pure-rust implementation of poptrie"
rust-version = "1.87"
authors = ["Nicolas Kagami <nicolaskagami@gmail.com>"]
homepage = "https://github.com/nicolaskagami/poptrie"
repository = "https://github.com/nicolaskagami/poptrie"
license = "Apache-2.0 OR MIT"
edition = "2024"
readme = "README.md"
keywords = ["poptrie", "ip", "prefix", "trie"]
categories = ["network-programming", "data-structures", "no-std"]
[dependencies]
ipnet = { version = "2", default-features = false, optional = true }
cidr = { version = "0.3", default-features = false, optional = true }
[features]
default = []
ipnet = ["dep:ipnet"]
cidr = ["dep:cidr"]
[dev-dependencies]
criterion = "0.8.2"
proptest = "1.10.0"
rand = "0.10.0"
rand_chacha = "0.10.0"
generic-tests = "0.1"
[[bench]]
name = "lpm_benches"
harness = false