├── .gitignore ├── Cargo.toml ├── README.md ├── benches └── my_benchmark.rs ├── examples └── idlejitter.rs └── src ├── fastcounter.rs ├── immortal.rs ├── lib.rs ├── new_executor.rs ├── queues.rs └── reaper.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/README.md -------------------------------------------------------------------------------- /benches/my_benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/benches/my_benchmark.rs -------------------------------------------------------------------------------- /examples/idlejitter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/examples/idlejitter.rs -------------------------------------------------------------------------------- /src/fastcounter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/fastcounter.rs -------------------------------------------------------------------------------- /src/immortal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/immortal.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/new_executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/new_executor.rs -------------------------------------------------------------------------------- /src/queues.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/queues.rs -------------------------------------------------------------------------------- /src/reaper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/smolscale/HEAD/src/reaper.rs --------------------------------------------------------------------------------