├── .github └── workflows │ ├── ci.yml │ └── release-plz.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── Cargo.lock ├── Cargo.toml ├── benches │ └── thread_local.rs └── src │ └── lib.rs └── src ├── cached.rs ├── lib.rs └── thread_id.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/README.md -------------------------------------------------------------------------------- /benches/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/benches/Cargo.lock -------------------------------------------------------------------------------- /benches/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/benches/Cargo.toml -------------------------------------------------------------------------------- /benches/benches/thread_local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/benches/benches/thread_local.rs -------------------------------------------------------------------------------- /benches/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cached.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/src/cached.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/thread_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanieu/thread_local-rs/HEAD/src/thread_id.rs --------------------------------------------------------------------------------