|
@@ -8,17 +8,15 @@
|
|
#![allow(unused_mut)]
|
|
#![allow(unused_mut)]
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unreadable_literal))]
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unreadable_literal))]
|
|
|
|
|
|
-// These crates would be needed to load bytecode from a BPF-compiled object file. Since the crates
|
|
|
|
-// are not used anywhere else in the library, it is deactivated: we do not want to load and compile
|
|
|
|
-// them just for the tests. If you want to use them, do not forget to add the following
|
|
|
|
-// dependencies to your Cargo.toml file:
|
|
|
|
|
|
+// This crate would be needed to load bytecode from a BPF-compiled object file. Since the crate
|
|
|
|
+// is not used anywhere else in the library, it is deactivated: we do not want to load and compile
|
|
|
|
+// it just for the tests. If you want to use it, do not forget to add the following
|
|
|
|
+// dependency to your Cargo.toml file:
|
|
//
|
|
//
|
|
// ---
|
|
// ---
|
|
-// byteorder = "0.5.3"
|
|
|
|
// elf = "0.0.10"
|
|
// elf = "0.0.10"
|
|
// ---
|
|
// ---
|
|
//
|
|
//
|
|
-// extern crate byteorder;
|
|
|
|
// extern crate elf;
|
|
// extern crate elf;
|
|
// use std::path::PathBuf;
|
|
// use std::path::PathBuf;
|
|
|
|
|