├── .github ├── actions │ └── setup-rust │ │ └── action.yml └── workflows │ ├── ci.yml │ └── release-plz.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── benches ├── bitpacking.rs ├── bitpacking_cmp.rs ├── bitpacking_cmp_cod.rs ├── delta.rs ├── ffor.rs ├── rle.rs ├── shared │ └── mod.rs └── transpose.rs ├── clippy.toml ├── renovate.json ├── rust-toolchain.toml └── src ├── bitpacking.rs ├── bitpacking_cmp.rs ├── delta.rs ├── ffor.rs ├── lib.rs ├── macros.rs ├── rle.rs └── transpose.rs /.github/actions/setup-rust/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/.github/actions/setup-rust/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/README.md -------------------------------------------------------------------------------- /benches/bitpacking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/bitpacking.rs -------------------------------------------------------------------------------- /benches/bitpacking_cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/bitpacking_cmp.rs -------------------------------------------------------------------------------- /benches/bitpacking_cmp_cod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/bitpacking_cmp_cod.rs -------------------------------------------------------------------------------- /benches/delta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/delta.rs -------------------------------------------------------------------------------- /benches/ffor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/ffor.rs -------------------------------------------------------------------------------- /benches/rle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/rle.rs -------------------------------------------------------------------------------- /benches/shared/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/shared/mod.rs -------------------------------------------------------------------------------- /benches/transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/benches/transpose.rs -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | allow-unwrap-in-tests = true 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/renovate.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /src/bitpacking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/bitpacking.rs -------------------------------------------------------------------------------- /src/bitpacking_cmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/bitpacking_cmp.rs -------------------------------------------------------------------------------- /src/delta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/delta.rs -------------------------------------------------------------------------------- /src/ffor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/ffor.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/rle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/rle.rs -------------------------------------------------------------------------------- /src/transpose.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiraldb/fastlanes/HEAD/src/transpose.rs --------------------------------------------------------------------------------