-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (56 loc) · 1.77 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (56 loc) · 1.77 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
[workspace]
members = [
"crates/skbx-agent",
"crates/skbx-arc",
"crates/skbx-cli",
"crates/skbx-contract",
"crates/skbx-core",
"crates/skbx-mission",
"crates/skbx-route",
"crates/skbx-sensor",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-or-later"
repository = "https://github.com/copyleftdev/skbx"
homepage = "https://copyleftdev.github.io/skbx/"
rust-version = "1.85"
[workspace.dependencies]
anyhow = "1.0.104"
axum = "0.8.9"
blake3 = "1.8.5"
btf-rs = { version = "2.0.0", features = ["regex"] }
clap = { version = "4.6.4", features = ["derive"] }
fallible-iterator = "0.3.0"
file-rotate = "0.8.0"
flate2 = "1.1.9"
iced-x86 = { version = "1.21.0", default-features = false, features = ["decoder", "std"] }
libc = "0.2.189"
libbpf-rs = "0.26.2"
nix = { version = "0.31.3", features = ["sched"] }
pcap = "2.4.0"
regex = "1.12.3"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "rustls"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
thiserror = "2.0.18"
time = { version = "=0.3.45", features = ["formatting"] }
tokio = { version = "1.53.1", features = ["macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
tower = { version = "0.5.3", features = ["util"] }
tower-http = { version = "0.7.0", features = ["limit", "trace"] }
skbx-contract = { version = "0.1.0", path = "crates/skbx-contract" }
skbx-core = { version = "0.1.0", path = "crates/skbx-core" }
skbx-mission = { version = "0.1.0", path = "crates/skbx-mission" }
skbx-sensor = { version = "0.1.0", path = "crates/skbx-sensor" }
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
[profile.dev-release]
inherits = "release"
lto = false
codegen-units = 16
strip = false