├── .github └── workflows │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── bench.rs ├── src ├── bin │ └── profile.rs └── lib.rs └── tests └── tests.rs /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /src/bin/profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/src/bin/profile.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankmcsherry/columnation/HEAD/tests/tests.rs --------------------------------------------------------------------------------