├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── macro ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT └── src │ ├── lib.rs │ └── span.rs ├── src └── lib.rs └── tests └── tests.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/README.md -------------------------------------------------------------------------------- /macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/macro/Cargo.toml -------------------------------------------------------------------------------- /macro/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/macro/LICENSE-APACHE -------------------------------------------------------------------------------- /macro/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/macro/LICENSE-MIT -------------------------------------------------------------------------------- /macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/macro/src/lib.rs -------------------------------------------------------------------------------- /macro/src/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/macro/src/span.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaitchuck/constrandom/HEAD/tests/tests.rs --------------------------------------------------------------------------------