-
Hello, I am trying to get the simplest deploy example to work as a standalone program, not in the scope of the demo template. I keep getting errors like this: error[E0432]: unresolved import `hydro_template`
--> (full path) /Users/ntrp/_pws/hydro-rs-demo/target/hydro_trybuild/hydro-template/src/bin/_process_0_0FA3FE05.rs:154:9
|
154 | pub use hydro_template::__staged;
| ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `hydro_template`
|
= help: if you wanted to use a crate named `hydro_template`, use `cargo add hydro_template` to add it to your `Cargo.toml`
For more information about this error, try `rustc --explain E0432`.
error: cannot determine resolution for the import
--> (full path) /Users/ntrp/_pws/hydro-rs-demo/target/hydro_trybuild/hydro-template/src/bin/_process_0_0FA3FE05.rs:32:25
|
32 | use crate::__staged::__deps::*;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: cannot determine resolution for the import
--> (full path) /Users/ntrp/_pws/hydro-rs-demo/target/hydro_trybuild/hydro-template/src/bin/_process_0_0FA3FE05.rs:33:25
|
33 | use crate::__staged::*;
| ^^^^^^^^^^^^^^^^^^ I am pretty sure it is because of miss configuration in stageleft but I am not figuring out what is wrong.. Any hints or, even better, example of full standalone demos with deploy I can look at? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi! Awesome to see that you're trying to launch some Hydro code. Could you share the contents of your |
Beta Was this translation helpful? Give feedback.
Also, do you have these lines in your
lib.rs
?They are required to compile Hydro code.