-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 920 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 920 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 = "pesto"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "High-performance sFlow v5 collector"
repository = "https://github.com/nxthdr/pesto"
homepage = "https://nxthdr.dev"
keywords = ["sflow", "collector"]
exclude = [
".github/*",
"integration/*",
"renovate.json",
]
[dependencies]
anyhow = "1.0"
bytes = "1.9"
capnp = "0.25"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
clap-verbosity-flag = { version = "3.0", features = ["tracing"] }
etherparse = "0.16"
metrics = "0.24"
metrics-exporter-prometheus = "0.18"
rdkafka = { version = "0.38", features = ["ssl", "sasl"] }
sflow-parser = { version = "0.4.2", features = ["serde"] }
tokio = { version = "1.42", features = ["full"] }
tokio-graceful = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
[build-dependencies]
capnpc = "0.25"