-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 682 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 682 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
31
32
33
34
35
[package]
name = "sflow-parser"
version = "0.6.0"
license = "MIT"
readme = "README.md"
description = "InMon sFlow v5 Parser"
repository = "https://github.com/nxthdr/sflow-parser"
homepage = "https://nxthdr.dev"
keywords = ["sflow", "parser"]
edition = "2021"
exclude = [
".github/*",
"benches/*",
"tests/*",
"codecov.yml",
"renovate.json",
]
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
[features]
default = []
serde = ["dep:serde"]
[dev-dependencies]
criterion = "0.8"
regex = "1"
syn = { version = "2", features = ["full", "parsing"] }
ureq = "3"
serde_json = "1.0"
[[bench]]
name = "parser_benchmark"
harness = false