Coder Social home page Coder Social logo

regexident / cargo-sweep Goto Github PK

View Code? Open in Web Editor NEW

This project forked from holmgr/cargo-sweep

0.0 2.0 0.0 76 KB

A cargo subcommand for cleaning up unused build files generated by Cargo

License: MIT License

Rust 90.20% PowerShell 1.82% Shell 7.98%

cargo-sweep's Introduction

Cargo-sweep

A cargo subcommand for cleaning up unused build files generated by Cargo.

Motivation

Ideally you want:

  • Caching of recent artifacts for fast build times
  • Limited target size so that CI caches (on Travis etc.) are fast
  • An easy way of maintaining one or more projects at the same time

Cargo-sweep aims to solve all these issues for which a simple cargo clean is not sufficient.

Quick start

To install run:

cargo install cargo-sweep

To clean all build files older than 30 days in the local cargo project run:

cargo sweep -t 30

To clean all build files not made by the currently installed (by rustup) nightly compiler:

cargo sweep --toolchains="nightly"

This can be useful if you checked that your library works on stable, but mostly develop on nightly.

To clean all build files not made by any of the currently installed (by rustup) compilers:

cargo sweep -i

This can be useful if you just updated your compilers with a rustup update.

Non-rustup environment are also supported. If cargo-sweep fails to run rustup, it fallbacks to bare rustc call (rustc must be installed and the path to it must be available through the PATH environment variable).

To preview the results of a sweep run, which is recommended as a first step, add the -d flag, for instance:

cargo sweep -d -t 30

You can also specify a path instead of defaulting to the current directory:

cargo sweep -t 30 <path>

To clean everything but the latest build you will need to run it in several steps.

cargo sweep -s

<Insert any number of cargo build, cargo test etc...>

cargo sweep -f

The first step generates a timestamp file which will be used to clean everything that was not used between it and the next time the file (-f) option is used.

Finally, you can recursively clean all cargo project below a given path by adding the -r flag, for instance:

cargo sweep -r -t 30 code/github.com/holmgr/

For more information run:

cargo sweep -h

License

Cargo-sweep is distributed under the terms the MIT license.

See LICENSE for details.

cargo-sweep's People

Contributors

coolreader18 avatar creepyskeleton avatar djdv avatar eh2406 avatar holmgr avatar jplatte avatar lukaskalbertodt avatar mdboom avatar pickfire avatar quake avatar sourcefrog avatar tesuji avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.