├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .vscode └── settings.json ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── bors.toml ├── examples ├── bench.rs ├── bench_single_thread.rs └── print_at_exit.rs ├── rustfmt.toml ├── src ├── imp.rs └── lib.rs └── xtask ├── Cargo.toml ├── src └── main.rs └── tests └── tidy.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "rust-analyzer.cargo.features": ["enable", "print_at_exit"] 3 | } 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/README.md -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- 1 | status = [ "Rust" ] 2 | delete_merged_branches = true 3 | -------------------------------------------------------------------------------- /examples/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/examples/bench.rs -------------------------------------------------------------------------------- /examples/bench_single_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/examples/bench_single_thread.rs -------------------------------------------------------------------------------- /examples/print_at_exit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/examples/print_at_exit.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | reorder_modules = false 2 | use_small_heuristics = "Max" 3 | -------------------------------------------------------------------------------- /src/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/src/imp.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/src/lib.rs -------------------------------------------------------------------------------- /xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/xtask/Cargo.toml -------------------------------------------------------------------------------- /xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/xtask/src/main.rs -------------------------------------------------------------------------------- /xtask/tests/tidy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-analyzer/countme/HEAD/xtask/tests/tidy.rs --------------------------------------------------------------------------------