-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support Windows #5
Comments
I can't reproduce the error. Here's what I did: cargo new wavy-add
cd wavy-add/
cargo add wavy
# add `use wavy` at the top of src/main.rs
cargo build
# failed because cargo add messed up the toml file, so I deleted and remade
cargo add wavy
cargo build
# it builds fine I also noticed that my version of cargo-add (which I just installed, because I did not have before), used Try, cargo update and see if that works, otherwise try, cargo install cargo-add --force to update cargo add, and re-create your TOML file. Can you please tell me if either works, and if not post |
First, here are the files you requested as a ZIP file because Github doesn't allow their formats to be published seperately. I just tried again with a new project. Here are my steps : Then I added the use wavy::* part to main.rs
And here is the output :
|
This is a different error than "can't find rust crate". This is due to wavy not supporting Windows yet (it only works on Linux at the moment). Sorry about that, hopefully wavy will support Windows soon. |
Oooh OK no problem. That's sad, your crate looks great ! I hope Windows support will happen soon. |
Hello ! I've added wavy through
cargo add wavy
and effectively gotwavy = "0.1.2"
in my Cargo.toml, but I can'tuse
it without getting acan't find crate rustc(E0463)
error. Have I missed a step that would be specific to your crate ?EDIT : I'm using rustc 1.40.0
The text was updated successfully, but these errors were encountered: