[package]
edition = "2021"
rust-version = "1.81"
name = "sz-orm-graph"
version = "0.1.0"
authors = ["SZ-ORM Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graph database support for sz-orm: Neo4j Cypher query, typed mapping, declarative modeling"
homepage = "https://github.com/ljclz/sz-orm"
readme = false
keywords = [
"orm",
"graph",
"neo4j",
"cypher",
"database",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ljclz/sz-orm"
[features]
default = []
integration = []
[lib]
name = "sz_orm_graph"
path = "src/lib.rs"
[[test]]
name = "neo4j_integration"
path = "tests/neo4j_integration.rs"
[[test]]
name = "performance"
path = "tests/performance.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
[lints.clippy]
module_name_repetitions = "allow"
type_complexity = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"