-
Notifications
You must be signed in to change notification settings - Fork 113
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
Initialization fails in workspaced directories #42
Comments
Yeah, you have to cd into a crate to do it for now. |
Seems similar to #15. |
FWIW, in have a workspace that looks like this, [workspace]
members = [ "smtp-message", "smtp-message/fuzz",
"smtp-server", "smtp-server/fuzz",
"smtp-queue", "smtp-queue-fs",
"benches" ] It fails with |
I'm not sure if this should still be open, I was able to get a fuzz target working with the rest of my workspace. (Although due to rust-lang/cargo#4897 I have to pass |
Can this be reviewed as |
Can confirm that |
For anyone getting here, after the merge of #349 this is solved. |
If I have a directory like this:
Where Cargo.toml only contains something like this:
Then initialization fails on an unwrap of None on an Option (though it doesn't say which one). It would be nice if cargo-fuzz could worked with workspaced projects so that it has one folder with targets for all binaries in the workspace.
The text was updated successfully, but these errors were encountered: