├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples └── main.rs ├── src └── lib.rs └── tests └── test.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/README.md -------------------------------------------------------------------------------- /examples/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/examples/main.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Windfisch/rust-assert-no-alloc/HEAD/tests/test.rs --------------------------------------------------------------------------------