diff options
Diffstat (limited to 'fs-tracer-common')
-rw-r--r-- | fs-tracer-common/Cargo.toml | 2 | ||||
-rw-r--r-- | fs-tracer-common/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs-tracer-common/Cargo.toml b/fs-tracer-common/Cargo.toml index 6fc97ca..7cac257 100644 --- a/fs-tracer-common/Cargo.toml +++ b/fs-tracer-common/Cargo.toml @@ -9,7 +9,7 @@ user = ["aya"] [dependencies] aya = { git = "https://github.com/aya-rs/aya", optional = true } -aya-bpf = { git = "https://github.com/aya-rs/aya" } +aya-ebpf = { git = "https://github.com/aya-rs/aya" } [lib] diff --git a/fs-tracer-common/src/lib.rs b/fs-tracer-common/src/lib.rs index 4469128..68d563e 100644 --- a/fs-tracer-common/src/lib.rs +++ b/fs-tracer-common/src/lib.rs @@ -4,7 +4,7 @@ use core::ffi::c_uint; use core::fmt::{self, Formatter}; use core::str; -use aya_bpf::cty::c_long; +use aya_ebpf::cty::c_long; use core::ffi::c_size_t; pub enum SyscallInfo { |