-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (56 loc) · 1.49 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (56 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
resolver = "2"
members = [
"tapio-common",
"tapio-wire",
"tapio-profile",
"tapio-agent",
"tapio-controller",
"tapio-cli",
]
[workspace.package]
version = "4.0.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
repository = "https://github.com/yairfalse/tapio"
[workspace.dependencies]
# eBPF
aya = "0.13"
# Async
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "sync", "time"] }
# Protobuf (OTLP export)
prost = "0.13"
# FALSE Protocol
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std"] }
prometheus = { version = "0.13", default-features = false }
# HTTP (metrics + health only)
axum = { version = "0.8", default-features = false, features = ["http1", "json", "tokio"] }
tower = { version = "0.5", features = ["util"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Compression (OTLP gzip)
flate2 = "1"
# System
libc = "0.2"
# Config
toml = { version = "0.8", default-features = false, features = ["parse"] }
# Essentials
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
ulid = "1"
thiserror = "2"
anyhow = "1"
# Workspace crates
tapio-common = { path = "tapio-common" }
tapio-wire = { path = "tapio-wire" }
tapio-profile = { path = "tapio-profile" }
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = "z"
panic = "abort"