-
Notifications
You must be signed in to change notification settings - Fork 6
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
Adding crate a second time emits error but no exit code #7
Comments
It would be nice to add support for |
I have put up 0.5.0 which now actually checks whether the crate is loaded, and any subsequent attempt to Not entirely sure we have solved the general problem - where we could end up with different versions of the same crate. The logic that As for |
Per-script deps does sound necessary for general use, however my use case only requires one version of each crate that is used by many scripts.
I dont follow this.
My project has moved from //! ```cargo
//! [package]
//! edition = "2018"
//! [dependencies]
//! time = "0.1.25"
//! ```
|
If the same crate is added twice, the second time there is no exit-code
It would be nicer for scripting if
runner --add flagset some.rs
would add flagset if it is missing, and then runsome.rs
.The text was updated successfully, but these errors were encountered: