Hi, I have a local crate, which enable tokio unstable, through it's config file. I can build it successfully with wasi as target. .
I get an app which enable tokio unstable too, and use the local crate as dependency.
But I get
use of unstable library feature `wasi`
--> /data/data/com.termux/files/home/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.47.1/src/net/tcp/stream.rs:1427:9
If I run cargo tree -i tokio , the only deps which depend on is my local crate.
I miss something on my app?
I use rust nightly