Sfoglia il codice sorgente

src/lib.rs: sort module includes

Sort them alphabetically, but put public includes at the top.
Quentin Monnet 8 anni fa
parent
commit
d12f712a8f
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/lib.rs

+ 2 - 2
src/lib.rs

@@ -20,11 +20,11 @@ use std::collections::HashMap;
 
 
 extern crate libc;
 extern crate libc;
 
 
+pub mod disassembler;
 pub mod ebpf;
 pub mod ebpf;
 pub mod helpers;
 pub mod helpers;
-mod verifier;
 mod jit;
 mod jit;
-pub mod disassembler;
+mod verifier;
 
 
 // A metadata buffer with two offset indications. It can be used in one kind of eBPF VM to simulate
 // A metadata buffer with two offset indications. It can be used in one kind of eBPF VM to simulate
 // the use of a metadata buffer each time the program is executed, without the user having to
 // the use of a metadata buffer each time the program is executed, without the user having to