├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src └── lib.rs └── tests ├── threads.rs └── tokio.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/threads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/tests/threads.rs -------------------------------------------------------------------------------- /tests/tokio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoignardAzur/scoped_tasks_prototype/HEAD/tests/tokio.rs --------------------------------------------------------------------------------