warning: profiles for the non root package will be ignored, specify profiles at the workspace root: package: /Users/aok/Projects/rustdev/CratesCode/nigig-org/crates/pageflipnav/Cargo.toml workspace: /Users/aok/Projects/rustdev/CratesCode/nigig-org/Cargo.toml Compiling streem v0.1.0 (/Users/aok/Projects/rustdev/CratesCode/nigig-org/crates/apps/streem) error[E0433]: cannot find `streem` in `apps` --> crates/apps/streem/src/main.rs:41:28 | 41 | nigig_uikit::apps::streem::theme::script_mod(vm); | ^^^^^^ could not find `streem` in `apps` | help: consider importing this module | 1 + use nigig_uikit::theme; | help: if you import `theme`, refer to it directly | 41 - nigig_uikit::apps::streem::theme::script_mod(vm); 41 + theme::script_mod(vm); | error[E0433]: cannot find `streem_frame` in `crate` --> crates/apps/streem/src/main.rs:53:16 | 53 | crate::streem_frame::script_mod(vm); | ^^^^^^^^^^^^ unresolved import | help: a similar path exists | 53 | crate::streem::streem_frame::script_mod(vm); | ++++++++ help: consider importing this module | 1 + use streem::streem_frame; | help: if you import `streem_frame`, refer to it directly | 53 - crate::streem_frame::script_mod(vm); 53 + streem_frame::script_mod(vm); | For more information about this error, try `rustc --explain E0433`. error: could not compile `streem` (bin "streem") due to 2 previous errors aok@aoks-MacBook-Pro nigig-org %