-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
48 lines (46 loc) · 1.06 KB
/
Cargo.toml
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
[workspace]
members = [
"agent",
"agent/tests/agenttest",
"client",
"crypto-auditing",
"event-broker",
"log-parser"
]
resolver = "2"
[workspace.package]
version = "0.2.3"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["The crypto-auditing developers"]
[workspace.dependencies]
anyhow = "1.0"
bindgen = "0.63"
bytes = "1.2"
clap = "4"
crypto-auditing = { version = "=0.2.3", path = "crypto-auditing" }
futures = "0.3"
hex = "0.4"
inotify = "0.10.2"
libbpf-rs = { version = "0.24.4", default-features = false }
libbpf-cargo = { version = "0.24.4", default-features = false }
libc = "0.2"
nix = "0.26"
openssl = "0.10"
page_size = "0.6"
probe = "0.5"
plain = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.11"
serde_json = "1.0"
serde_with = "3"
tempfile = "3"
thiserror = "1.0"
time = "0.3"
tokio = "1.23"
tokio-serde = { version = "0.8", features = ["cbor"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["codec"] }
toml = "0.7"
tracing = "0.1"
tracing-subscriber = "0.3"