Add basic CI conf (#3)

* Add basic CI conf

* Pull in submodules in Rustfmt job

* Exclude WASI from workspace; fix name clash in memory crate

* Refactor CI conf
This commit is contained in:
Jakub Konka
2020-02-03 09:59:09 +01:00
committed by GitHub
parent 3d428b828f
commit e6cec049cb
3 changed files with 67 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ mod guest_type;
mod memory;
mod region;
pub use self::memory::{GuestMemory, GuestPtr, GuestPtrMut, GuestRef, GuestRefMut};
pub use error::GuestError;
pub use guest_type::{GuestErrorType, GuestType, GuestTypeClone, GuestTypeCopy, GuestTypePtr};
pub use memory::{GuestMemory, GuestPtr, GuestPtrMut, GuestRef, GuestRefMut};
pub use region::Region;