You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cargo new dummy
$ cd dummy
$ cargo add rune_modules --features=process
$ cargo build[...] Compiling rune-modules v0.13.3error[E0432]: unresolved import `tokio` --> /home/arvid/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rune-modules-0.13.3/src/process.rs:38:5 |38 | use tokio::process; | ^^^^^ use of undeclared crate or module `tokio`For more information about this error, try `rustc --explain E0432`.error: could not compile `rune-modules` (lib) due to 1 previous error
Seems that the process feature should depend on the tokio feature.
Also, does this mean I can't use smol as my runtime instead of tokio if I want to use the process module?
The text was updated successfully, but these errors were encountered:
Seems that the
process
feature should depend on thetokio
feature.Also, does this mean I can't use smol as my runtime instead of tokio if I want to use the
process
module?The text was updated successfully, but these errors were encountered: