├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── src └── lib.rs └── tests └── threads-living-too-long-demo.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/threads-living-too-long-demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kimundi/scoped-threadpool-rs/HEAD/tests/threads-living-too-long-demo.rs --------------------------------------------------------------------------------