-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (39 loc) · 1.14 KB
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 = "flowparser-sflow"
description = "Parser for sFlow v5 datagrams"
version = "0.3.0"
edition = "2024"
authors = ["michael.mileusnich@gmail.com"]
license = "MIT OR Apache-2.0"
categories = ["encoding", "network-programming", "parser-implementations"]
keywords = ["sflow", "parser", "network", "sampling"]
readme = "README.md"
repository = "https://github.com/mikemiles-dev/sflow_parser/"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
nom = "8.0.0"
mac_address = { version = "1.1.5", features = ["serde"] }
serde = { version = "1.0.166", features = ["derive"] }
uuid = { version = "1.21.0", features = ["serde"] }
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
insta = { version = "1.30.0", features = ["yaml"] }
tokio = { version = "1.38.0", features = ["full"] }
hex = "0.4.3"
serde_json = "1.0.100"
pcap-parser = "0.17"
etherparse = "0.20"
[[bench]]
name = "flowparser_sflow_bench"
harness = false
[[bench]]
name = "flow_sample_bench"
harness = false
[[bench]]
name = "counter_sample_bench"
harness = false
[[bench]]
name = "throughput_bench"
harness = false