Adding upstream version 26.1.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
09521056ff
commit
d908bee480
119 changed files with 71635 additions and 68059 deletions
|
@ -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"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue