[package]
edition = "2021"
rust-version = "1.81"
name = "sz-orm-graph"
version = "6.0.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",
"database",
"async",
"sql",
"tokio",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/ljclz/sz-orm"
[package.metadata.cargo-machete]
ignored = [
"async-trait",
"tracing",
]
[features]
default = []
integration = []
neo4j-driver = []
[lib]
name = "sz_orm_graph"
path = "src/lib.rs"
[[test]]
name = "cypher_write_tests"
path = "tests/cypher_write_tests.rs"
[[test]]
name = "in_memory_e2e"
path = "tests/in_memory_e2e.rs"
[[test]]
name = "in_memory_performance"
path = "tests/in_memory_performance.rs"
[[test]]
name = "neo4j_driver_tests"
path = "tests/neo4j_driver_tests.rs"
[[test]]
name = "neo4j_integration"
path = "tests/neo4j_integration.rs"
[[test]]
name = "performance"
path = "tests/performance.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.crossbeam-queue]
version = "0.3"
[dependencies.serde]
version = "1"
features = [
"derive",
"std",
]
[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"