├── .gitattributes ├── .github ├── rust.json └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── ci ├── before_deploy.ps1 ├── before_deploy.sh ├── install.sh ├── pre-push └── script.sh ├── src ├── cli.rs ├── fingerprint.rs ├── main.rs ├── stamp.rs └── util.rs └── tests ├── fresh-prefix └── .hidden │ └── hidden-project │ ├── Cargo.toml │ ├── src │ └── lib.rs │ └── target │ └── .gitkeep ├── integration.rs ├── nested-root-workspace ├── Cargo.toml ├── bin-crate │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── crates │ ├── crate-one │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── crate-two │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs └── target │ └── .gitkeep ├── rustc ├── sample-project ├── Cargo.toml ├── src │ └── lib.rs └── target │ └── .gitkeep ├── standalone-usage.trycmd ├── usage-long.trycmd └── usage.trycmd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/rust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/.github/rust.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/README.md -------------------------------------------------------------------------------- /ci/before_deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/ci/before_deploy.ps1 -------------------------------------------------------------------------------- /ci/before_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/ci/before_deploy.sh -------------------------------------------------------------------------------- /ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/ci/install.sh -------------------------------------------------------------------------------- /ci/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/ci/pre-push -------------------------------------------------------------------------------- /ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/ci/script.sh -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/fingerprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/src/fingerprint.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/stamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/src/stamp.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/fresh-prefix/.hidden/hidden-project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/fresh-prefix/.hidden/hidden-project/Cargo.toml -------------------------------------------------------------------------------- /tests/fresh-prefix/.hidden/hidden-project/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/fresh-prefix/.hidden/hidden-project/src/lib.rs -------------------------------------------------------------------------------- /tests/fresh-prefix/.hidden/hidden-project/target/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/integration.rs -------------------------------------------------------------------------------- /tests/nested-root-workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/Cargo.toml -------------------------------------------------------------------------------- /tests/nested-root-workspace/bin-crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/bin-crate/Cargo.toml -------------------------------------------------------------------------------- /tests/nested-root-workspace/bin-crate/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/bin-crate/src/main.rs -------------------------------------------------------------------------------- /tests/nested-root-workspace/crates/crate-one/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/crates/crate-one/Cargo.toml -------------------------------------------------------------------------------- /tests/nested-root-workspace/crates/crate-one/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/crates/crate-one/src/lib.rs -------------------------------------------------------------------------------- /tests/nested-root-workspace/crates/crate-two/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/crates/crate-two/Cargo.toml -------------------------------------------------------------------------------- /tests/nested-root-workspace/crates/crate-two/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/nested-root-workspace/crates/crate-two/src/lib.rs -------------------------------------------------------------------------------- /tests/nested-root-workspace/target/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/rustc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/rustc -------------------------------------------------------------------------------- /tests/sample-project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/sample-project/Cargo.toml -------------------------------------------------------------------------------- /tests/sample-project/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/sample-project/src/lib.rs -------------------------------------------------------------------------------- /tests/sample-project/target/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/standalone-usage.trycmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/standalone-usage.trycmd -------------------------------------------------------------------------------- /tests/usage-long.trycmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/usage-long.trycmd -------------------------------------------------------------------------------- /tests/usage.trycmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holmgr/cargo-sweep/HEAD/tests/usage.trycmd --------------------------------------------------------------------------------