├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src ├── consumer.rs ├── lib.rs └── producer.rs └── tests └── producer.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/README.md -------------------------------------------------------------------------------- /src/consumer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/src/consumer.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/producer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/src/producer.rs -------------------------------------------------------------------------------- /tests/producer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nox/rayon_croissant/HEAD/tests/producer.rs --------------------------------------------------------------------------------