Minor cleanup

This commit is contained in:
topjohnwu
2023-06-20 14:29:09 -07:00
committed by John Wu
parent 51e985ae7f
commit a6b1149b9f
4 changed files with 141 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
use crate::gen::gen_cxx_binding;
use pb_rs::{types::FileDescriptor, ConfigBuilder};
use crate::gen::gen_cxx_binding;
#[path = "../include/gen.rs"]
mod gen;

View File

@@ -1,15 +1,14 @@
#![feature(format_args_nl)]
#![feature(btree_drain_filter)]
extern crate core;
pub use base;
pub use cpio::*;
pub use payload::*;
pub use ramdisk::*;
use cpio::*;
use payload::*;
mod cpio;
mod payload;
// Suppress warnings in generated code
#[allow(warnings)]
mod proto;
mod ramdisk;