mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
sqloxide wraps rust bindings for sqlparser-rs into a python package using pyO3. The original goal of this project was to have a very fast, efficient, and accurate SQL parser I could use for building data lineage graphs across large code bases (think hundreds of auto-generated .sql files). Most existing sql parsing approaches for python are either very slow or not accurate (especially in regards to deeply nested queries, sub-selects and/or table aliases). Looking to the rust community for support, I found the excellent sqlparser-rs crate which is quite easy to wrap in python code.
11 lines
228 B
TOML
11 lines
228 B
TOML
--- pyproject.toml.orig 2024-09-13 16:10:59 UTC
|
|
+++ pyproject.toml
|
|
@@ -13,7 +13,7 @@ classifiers = [
|
|
]
|
|
|
|
[build-system]
|
|
-requires = ["maturin>=0.13,<0.14"]
|
|
+requires = ["maturin>=0.13"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|