-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
39 lines (34 loc) · 980 Bytes
/
Cargo.toml
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
35
36
37
38
39
[package]
name = "cidr"
# also bump version in html_root_url in src/lib.rs
version = "0.3.0"
edition = "2021"
rust-version = "1.81"
authors = ["Stefan Bühler <[email protected]>"]
description = "IP network and IP host within network types"
documentation = "https://docs.rs/cidr"
homepage = "https://github.com/stbuehler/rust-cidr"
repository = "https://github.com/stbuehler/rust-cidr"
categories = ["data-structures","network-programming"]
keywords = ["cidr", "network"]
readme = "README.md"
license = "MIT"
exclude = ["CHECKLIST.md"]
[badges]
appveyor = { repository = "stbuehler/rust-cidr" }
[features]
default = ["std"]
no_unsafe = []
std = []
bitstring = ["dep:bitstring"]
serde = ["dep:serde"]
[dependencies]
bitstring = { version = "0.2.0", optional = true, features = ["net"] }
serde = { version = "1.0.27", optional = true }
[dev-dependencies]
serde_test = "1.0.27"
bincode = "1.3.1"
version-sync = "0.9.1"
[package.metadata.docs.rs]
all-features = true
targets = []