[package]
edition = "2021"
rust-version = "1.81"
name = "sz-orm-python"
version = "0.1.0"
authors = ["SZ-ORM Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Python bindings for sz-orm-core (PyO3): Model, QueryBuilder, Pool, Transaction"
readme = "README.md"
keywords = [
"orm",
"database",
"python",
"pyo3",
"ffi",
]
categories = [
"database",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/ljclz/sz-orm"
[lib]
name = "sz_orm_python"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.pyo3]
version = "0.20"
features = ["extension-module"]
[dependencies.pyo3-asyncio]
version = "0.20"
[dependencies.serde_json]
version = "1"
[dependencies.sz-orm-core]
version = "1.0.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[lints.clippy]
module_name_repetitions = "allow"
type_complexity = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
non_local_definitions = "allow"
unsafe_op_in_unsafe_fn = "allow"