Make the Rust client the sole app
This commit is contained in:
1 parent
5ca244528f
commit
6dbc800739
27 files changed
+59
-42
No files matched your search
+6
-16
@@ -12,24 +12,20 @@ pub mod android;
|
||||
#[cfg(not(target_os = "android"))]
|
||||
pub mod desktop;
|
||||
|
||||
pub mod attr;
|
||||
pub mod diagnostics;
|
||||
pub mod event;
|
||||
pub mod harness;
|
||||
pub mod overlay;
|
||||
pub mod platform;
|
||||
pub mod runtime;
|
||||
pub mod sense;
|
||||
pub mod state;
|
||||
pub mod task;
|
||||
pub mod rsc;
|
||||
pub mod widget;
|
||||
|
||||
// Preserve concise public paths while implementation files stay grouped.
|
||||
pub use rsc::attr;
|
||||
pub use rsc::{event, overlay, sense, state, task};
|
||||
|
||||
#[cfg(test)]
|
||||
mod access_tests;
|
||||
#[cfg(test)]
|
||||
mod layout_tests;
|
||||
#[cfg(test)]
|
||||
mod sense_tests;
|
||||
|
||||
pub use iris_core as core;
|
||||
pub use iris_macro as macros;
|
||||
@@ -41,16 +37,10 @@ pub mod prelude {
|
||||
#[cfg(not(target_os = "android"))]
|
||||
pub use desktop::*;
|
||||
|
||||
pub use attr::*;
|
||||
pub use event::*;
|
||||
pub use iris_core::*;
|
||||
pub use iris_macro::*;
|
||||
pub use overlay::*;
|
||||
pub use platform::*;
|
||||
pub use runtime::*;
|
||||
pub use sense::*;
|
||||
pub use state::*;
|
||||
pub use task::*;
|
||||
pub use rsc::*;
|
||||
pub use widget::*;
|
||||
|
||||
pub use iris_core::util::Vec2;
|
||||
|
||||
Reference in new issue
Block a user