Skip to content

Commit 59d316c

Browse files
banditopazzovadorovsky
authored andcommitted
feat(bpf-common): add boltdb support to libpod container id resolve
1 parent 67a9ee8 commit 59d316c

File tree

5 files changed

+534
-153
lines changed

5 files changed

+534
-153
lines changed

Cargo.lock

Lines changed: 174 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ nix = { version = "0.27.1", features = [
140140
"net",
141141
] }
142142
num_cpus = "1.16"
143+
nut = "0.1.1"
143144
openssl = "0.10.61"
144145
proc-macro2 = "1.0.70"
145146
procfs = { version = "0.16.0", default-features = false }

crates/bpf-common/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ repository.workspace = true
88
[features]
99
default = []
1010
test-suite = ["test-utils"]
11-
test-utils = [
12-
"which",
13-
"cgroups-rs",
14-
"rand"
15-
]
11+
test-utils = ["which", "cgroups-rs", "rand"]
1612

1713
[dependencies]
1814
aya = { workspace = true, features = ["async_tokio"] }
@@ -33,6 +29,8 @@ serde_json = { workspace = true }
3329
lazy_static = { workspace = true }
3430
regex = { workspace = true }
3531
diesel = { workspace = true }
32+
rust-ini = { workspace = true }
33+
nut = { workspace = true }
3634

3735
# Test deps
3836
which = { workspace = true, optional = true }

0 commit comments

Comments
 (0)