-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with rust-embed ^6.0 #29
Comments
Thanks for the note, I'll try to make an update in the next days. |
Released in 0.7.0, should be good to go! Let me know if you have any issues. |
Having what seems like the same issue on 0.10.0, tried downgrading rust-embed to 5.9.0 but still had the same issue Here's the error I get
Relevant code:
Cargo.toml
Note: I'm new to Rust so my apologies if I'm missing something obvious |
I think this is a version conflict, the dependency is on "6", which means it is probably incompatible with both a 5.9.0 as well as 8.2.0. Does it work using a 6.x Version of rust-embed in the dependencies? |
That was it, set it to 6.1.0 and it compiles now, thank you! |
Hi,
I am looking to use this library in an ongoing project -- specifically, I am hoping to use the EmbeddedFS features to make an embedded, portable virtual file system for python and WASM ports of my robotics library.
I noticed that using new versions of rust-embed are not compatible with rust-vfs. Specifically, using rust-embed versions ^6.0 causes "the trait
rust_embed::RustEmbed
is not implemented for...
" errors, even when the struct explicitly derives from RustEmbed. To be clear, this issue is not present for rust-embed versions 5.9 and below; however, it would be great if versions 6.0 and above could be supported since there are really nice features in the newer versions of rust-embed (compression, include-exclude, etc.).Just let me know if you need any more details, thanks a lot!
The text was updated successfully, but these errors were encountered: