cargo
Here are 441 public repositories matching this topic...
-
Updated
Nov 12, 2020 - Rust
A code coverage tool for Rust projects
-
Updated
Nov 14, 2020 - Rust
The sysroot manager that lets you build and customize `std`
-
Updated
Jul 29, 2020 - Rust
Rust task runner and build tool.
-
Updated
Nov 15, 2020 - Rust
Example of using Rust to Extend Python
-
Updated
Sep 7, 2020 - Python
Automatically apply the suggestions made by rustc
-
Updated
Oct 6, 2020 - Rust
Cargo subcommand "release": everything about releasing a rust crate.
-
Updated
Oct 24, 2020 - Rust
A deny.toml without an [advisories] section will still check the RustSec when running cargo deny check advisories. This is great and the correct behaviour imo, but it would be good to document the default value for all configuration option and afaict it is not.
Thanks! :)
Fusion Reactor for Rust - Atom Rust IDE
-
Updated
Oct 13, 2017 - HTML
Cargo subcommand to profile binaries
-
Updated
Nov 2, 2020 - Rust
Save disk space by cleaning non-essential files from software projects.
-
Updated
Aug 11, 2020 - Rust
Cargo subcommand to automatically create universal libraries for iOS.
-
Updated
Sep 29, 2020 - Rust
A cargo plugin to generate Xcode Instruments trace files
-
Updated
Sep 21, 2020 - Rust
Gradle plugin that provides deployment capabilities to local and remote containers via Cargo
-
Updated
Feb 5, 2020 - Groovy
Easier cross-compilation for phones and single boards computers
-
Updated
Nov 4, 2020 - Rust
This is a tracking issue for additional Store implementations.
Here is a non-exhaustive list of potential candidates for an Store implementation:
- S3Storage:
This would store crate tarballs and rendered README pages into Amazon's S3. - RemoteStorage:
Requires to implement a companion server.
The idea is to have a reserved folder on another machine which runs a comp
Deploy kubernetes cluster with kargo
-
Updated
May 3, 2017 - Python
build and install C-compatible libraries
-
Updated
Oct 27, 2020 - Rust
Improve this page
Add a description, image, and links to the cargo topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cargo topic, visit your repo's landing page and select "manage topics."


I love
cargo-watch, and use it on everything! Right now, I am having a bit of trouble figuring out how to ignore a file properly.The following invocations successfully ignore
README.md:cargo watch -w src -s "touch README.md"cargo watch -i '.md' -s "touch README.md"cargo watch -i '*.md' -s "touch README.md"The following invocations don't ignore
README.md, which means