-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
30 lines (25 loc) · 816 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
[package]
name = "macaddr"
version = "1.0.1"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "MAC address types"
repository = "https://github.com/svartalf/rust-macaddr"
keywords = ["mac", "macaddr", "mac-48", "eui-48", "eui-96"]
categories = ["data-structures", "network-programming", "no-std"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
exclude = ["/.github", "/fuzz", "/benches"]
[badges]
maintenance = { status = "passively-maintained" }
[features]
default = ["std"]
std = []
# https://github.com/rust-lang/cargo/issues/3494
serde_std = ["std", "serde/std"]
[dependencies]
serde = { version = "^1.0", default-features = false, features = ["derive"], optional = true }
[dev-dependencies]
assert_matches = "1.3.0"
[package.metadata.docs.rs]
features = ["serde", "serde_std"]