Refactor last traces of "Universal" nomenclature

This commit is contained in:
Manos Pitsidianakis
2022-07-25 12:18:58 +03:00
parent 4a06b1d3f6
commit b15e8c2e4e
24 changed files with 56 additions and 56 deletions

View File

@@ -51,19 +51,19 @@ mod lib {
}
}
mod artifact;
#[cfg(not(target_arch = "wasm32"))]
mod engine;
mod traits;
pub use crate::artifact::*;
#[cfg(not(target_arch = "wasm32"))]
pub use crate::engine::*;
pub use crate::traits::*;
#[cfg(feature = "translator")]
mod universal_artifact;
mod artifact_builders;
#[cfg(feature = "translator")]
pub use self::universal_artifact::*;
pub use self::artifact_builders::*;
#[cfg(feature = "translator")]
mod compiler;