Vendor qroissant 0.3.0 baseline

This commit is contained in:
Cam Zalewski 2026-05-20 14:11:30 +01:00
commit 53ac90fe84
56 changed files with 18309 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[workspace]
members = ["crates/qroissant-core", "crates/qroissant-kernels", "crates/qroissant-arrow", "crates/qroissant-transport", "crates/qroissant-python"]
resolver = "3"
[workspace.package]
version = "0.3.0"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/qroissant/qroissant"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
[workspace.dependencies]
pyo3 = "0.28.2"
tokio = { version = "1.48.0", features = [
"io-util",
"net",
"rt-multi-thread",
"sync",
"time",
"macros",
] }
futures = "0.3"