├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── profile-watt.png └── profile-without.png ├── src ├── build.rs ├── main.rs ├── patch.rs ├── utils.rs ├── utils_toml.rs ├── verify.rs └── wasm │ ├── mod.rs │ └── modifications.rs ├── test-crate ├── .gitignore ├── Cargo.toml └── src │ └── lib.rs └── test-macro ├── .gitignore ├── Cargo.toml ├── src └── lib.rs └── user ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/README.md -------------------------------------------------------------------------------- /assets/profile-watt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/assets/profile-watt.png -------------------------------------------------------------------------------- /assets/profile-without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/assets/profile-without.png -------------------------------------------------------------------------------- /src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/build.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/patch.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/utils_toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/utils_toml.rs -------------------------------------------------------------------------------- /src/verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/verify.rs -------------------------------------------------------------------------------- /src/wasm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/wasm/mod.rs -------------------------------------------------------------------------------- /src/wasm/modifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/src/wasm/modifications.rs -------------------------------------------------------------------------------- /test-crate/.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | /.watt-patched 3 | -------------------------------------------------------------------------------- /test-crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-crate/Cargo.toml -------------------------------------------------------------------------------- /test-crate/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-crate/src/lib.rs -------------------------------------------------------------------------------- /test-macro/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /test-macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-macro/Cargo.toml -------------------------------------------------------------------------------- /test-macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-macro/src/lib.rs -------------------------------------------------------------------------------- /test-macro/user/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-macro/user/Cargo.toml -------------------------------------------------------------------------------- /test-macro/user/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakobhellermann/cargo-watt/HEAD/test-macro/user/src/main.rs --------------------------------------------------------------------------------