mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
28 lines
714 B
TOML
28 lines
714 B
TOML
[package]
|
|
name = "py-turso"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "_turso"
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
# must be enabled when building with `cargo build`, maturin enables this automatically
|
|
extension-module = ["pyo3/extension-module"]
|
|
tracing_release = ["turso_core/tracing_release"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
turso_core = { workspace = true, features = ["io_uring"] }
|
|
pyo3 = { version = "0.24.1", features = ["anyhow"] }
|
|
|
|
[build-dependencies]
|
|
version_check = "0.9.5"
|
|
# used where logic has to be version/distribution specific, e.g. pypy
|
|
pyo3-build-config = { version = "0.24.0" }
|