[package]
name = "vibesql-python-bindings"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Python bindings for vibesql SQL database"
keywords = ["sql", "database", "python", "pyo3"]
categories = ["database", "api-bindings"]
[lib]
name = "vibesql"
crate-type = ["cdylib"]
doc = false
[dependencies]
pyo3 = { workspace = true }
lru = "0.16"
parking_lot = "0.12"
vibesql-types = { version = "0.1.2", path = "../vibesql-types" }
vibesql-ast = { version = "0.1.2", path = "../vibesql-ast" }
vibesql-parser = { version = "0.1.2", path = "../vibesql-parser" }
vibesql-executor = { version = "0.1.2", path = "../vibesql-executor" }
vibesql-storage = { version = "0.1.2", path = "../vibesql-storage" }
vibesql-catalog = { version = "0.1.2", path = "../vibesql-catalog" }