Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: Antoine Tenart <[email protected]>
  • Loading branch information
atenart committed Oct 26, 2023
0 parents commit ccc3535
Show file tree
Hide file tree
Showing 7 changed files with 912 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build]
target = "x86_64-unknown-linux-gnu"

[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-feature=+crt-static"]
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
246 changes: 246 additions & 0 deletions Cargo.lock

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

13 changes: 13 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "drdump"
version = "0.1.0"
edition = "2021"
description = "Small utility to work with skb drop reasons given a set of BTF files (defaulting to the running kernel ones)"
repository = "https://github.com/retis-org/drdump"
homepage = "https://github.com/retis-org/drdump"
readme = "README.md"

[dependencies]
anyhow = "1.0"
btf-rs = { git = "https://github.com/retis-org/btf-rs", rev = "78cbe9edd750" }
clap = { version = "4.4", features = ["derive"] }
Loading

0 comments on commit ccc3535

Please sign in to comment.