Skip to content
This repository was archived by the owner on Jan 4, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rapidquery"
version = "0.1.0-alpha1"
version = "0.1.0-alpha5"
edition = "2021"
description = "RapiQuery is the fastest, full-feature, and easy-to-use Python SQL query builder written in Rust."
readme = "README.md"
Expand All @@ -13,9 +13,6 @@ authors = ["awolverp"]
name = "rapidquery"
crate-type = ["cdylib"]

[features]
optimize = []

[profile.dev]
lto = true
panic = "unwind"
Expand All @@ -38,6 +35,7 @@ chrono = { version = "0.4.27", default-features = false, features = ["clock"] }
serde_json = { version = "1", default-features = false, features = ["std"] }
rust_decimal = { version = "1.38.0", default-features = false }
once_cell = { version = "1.21.3", default-features = false, features = ["parking_lot"]}
indexmap = { version = "2.12.0", default-features = false, features = ["std"]}

[dependencies.parking_lot]
version = "0.12.4"
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ build-prod:
$(BUILD_CMD) --uv --release

test:
cargo clippy
$(BUILD_CMD) --uv
pytest -s -vv
-rm -rf .pytest_cache
Expand Down
Loading