Skip to content

Commit

Permalink
feat(bpf-common): add boltdb support to libpod container id resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
banditopazzo authored and vadorovsky committed Jan 10, 2024
1 parent 67a9ee8 commit 59d316c
Show file tree
Hide file tree
Showing 5 changed files with 534 additions and 153 deletions.
183 changes: 174 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ nix = { version = "0.27.1", features = [
"net",
] }
num_cpus = "1.16"
nut = "0.1.1"
openssl = "0.10.61"
proc-macro2 = "1.0.70"
procfs = { version = "0.16.0", default-features = false }
Expand Down
8 changes: 3 additions & 5 deletions crates/bpf-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ repository.workspace = true
[features]
default = []
test-suite = ["test-utils"]
test-utils = [
"which",
"cgroups-rs",
"rand"
]
test-utils = ["which", "cgroups-rs", "rand"]

[dependencies]
aya = { workspace = true, features = ["async_tokio"] }
Expand All @@ -33,6 +29,8 @@ serde_json = { workspace = true }
lazy_static = { workspace = true }
regex = { workspace = true }
diesel = { workspace = true }
rust-ini = { workspace = true }
nut = { workspace = true }

# Test deps
which = { workspace = true, optional = true }
Expand Down
Loading

0 comments on commit 59d316c

Please sign in to comment.