forked from abaumhauer/eui48
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.3 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
[package]
name = "eui48"
version = "0.4.6"
authors = ["Andrew Baumhauer <andy@baumhauer.us>",
"<rlcomstock3@github.com>",
"Michal 'vorner' Vaner <vorner+github@vorner.cz>" ]
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]
rustc-serialize = "0.3.24"
serde = { version = "1.0.80", optional = true }
serde_json = { version = "1.0.37", optional = true }
[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 = []
disp_hexstring = []