1
0
Fork 0

Adding upstream version 26.1.3.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-13 21:59:41 +01:00
parent 09521056ff
commit d908bee480
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
119 changed files with 71635 additions and 68059 deletions

View file

@ -1,12 +1,31 @@
[package]
name = "sqlglotrs"
version = "0.3.0"
version = "0.3.4"
edition = "2021"
license = "MIT"
[lib]
name = "sqlglotrs"
crate-type = ["cdylib"]
crate-type = ["cdylib", "rlib"]
[[bench]]
name = "long"
harness = false
[features]
# Enable this feature to use the serde and serde_json crates for profiling purposes
default = []
profiling = ["serde", "serde_json"]
[dependencies]
pyo3 = "0.22.6"
pyo3 = {version ="0.22.6", features = ["auto-initialize"]}
# Optional dependencies used for profiling
serde = { version = "1", features = ["derive"] , optional = true }
serde_json = { version = "1", optional = true }
[dev-dependencies]
criterion = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
sqlglotrs = { path = "." , features = ["profiling"] }