-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Feature Request: Ability to use dependencies as cargo extensions #1208
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
Comments
Note that part of the behavior could be implemented using a custom |
This sounds like a pretty great idea to me! I've often wanted a better way to install cargo subcommands. In general we don't deal much currently with the installation of crates, but this would certainly be a nice to have! |
As in, today we don't deal much with installation, but I'd certainly love to :) |
How do you think I could help, or I should proceed ? Adding a new Cargo directive ? What's your vision for that ? |
I haven't really given much thought to the story of |
I'm going to close this in favor of #37 as it's likely how one would install such packages. |
Hello,
Because I think Rust should be also used for websites, I'm trying to build a tool inspired by another build-tool,
sbt
, the Scala build tool. This tool offers a readline console in which you can issue most commands it supports.One of the commands allows the user to ask
sbt
to rebuild the project every time there is a file change in the project. A similar command can also be used to restart the project after it's been rebuilt.In order to emulate this behavior, I have successfully released the fsevent library for rust. This is my second released piece of rust (and I'm happy I have managed to handle FFI and Rust together), my first one being a FFI binding to a readline like library...
Now I would like to be able to:
cargo
(for exampleshell
)cargo
environment available,cargo
to build the project, or clean it, or whatever...How do you think this should be addressed ? Do you think this is a reasonable idea ? Do you see any other way to achieve the same result without having to modify cargo ?
Thank you for your time...
The text was updated successfully, but these errors were encountered: