forked from abaumhauer/eui48
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.54 KB
/
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
40
41
42
43
44
45
46
[package]
name = "eui48"
version = "1.1.1"
authors = ["Andrew Baumhauer <[email protected]>",
"<[email protected]>",
"Michal 'vorner' Vaner <[email protected]>",
"Stan Drozd <[email protected]>",
"Hans Christian Lonstad <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2018"
readme = "README.md"
repository = "https://github.com/abaumhauer/eui48"
homepage = "https://github.com/abaumhauer/eui48"
keywords = ["EUI-48", "MAC", "MAC-48", "networking", "MACADDR"]
categories = ["network-programming", "parser-implementations"]
description = """
A library to generate and parse IEEE EUI-48 and EUI-64, also known as MAC-48 media access
control addresses. The IEEE claims trademarks on the names EUI-48 and EUI-64, in which EUI is an
abbreviation for Extended Unique Identifier.
"""
exclude = [
".gitignore",
".travis.yml",
".gitlab-ci.yml",
".travis/*"
]
[dependencies]
regex = { version = "1.3.9", optional = false }
rustc-serialize = { version = "0.3.25", optional = true }
serde = { version = "1.0.114", optional = true }
serde_json = { version = "1.0.56", optional = true }
[dev-dependencies]
bincode = "1.3.1"
[badges]
travis-ci = { repository = "abaumhauer/eui48", branch = "master" }
codecov = { repository = "abaumhauer/eui48", branch = "master", service = "github" }
gitlab = { repository = "abaumhauer/eui48", branch = "master" }
appveyor = { repository = "abaumhauer/eui48", branch = "master", service = "github" }
[features]
default = ["rustc-serialize"]
disp_hexstring = []
serde_bytes = ["serde"]