forked from JulianSchmid/etherparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 986 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 986 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
[package]
name = "etherparse"
version = "0.8.0"
authors = ["Julian Schmid <info@julianschmid.name>"]
edition = "2018"
repository = "https://github.com/JulianSchmid/etherparse"
description = "A library for parsing & writing a bunch of packet based protocols (EthernetII, IPv4, IPv6, UDP, TCP ...)."
categories = ["network-programming", "parser-implementations"]
keywords = ["ipv4", "ipv6", "vlan", "udp", "tcp"]
license = "BSD-3-Clause"
readme = "README.md"
exclude = [
".gitignore",
".travis.yml",
".gitlab-ci.yml",
".travis/*"
]
[dependencies]
byteorder = "1.2.7"
[dev-dependencies]
assert_matches = "1.3.0"
proptest = "0.8.7"
[badges]
travis-ci = { repository = "JulianSchmid/etherparse", branch = "master" }
codecov = { repository = "JulianSchmid/etherparse", branch = "master", service = "github" }
gitlab = { repository = "julian.schmid/etherparse", branch = "master" }
appveyor = { repository = "JulianSchmid/etherparse", branch = "master", service = "github" }