[package]
name = "type-bridge-orm"
version = "1.5.3"
edition = "2024"
description = "Async ORM for TypeDB built on type-bridge-core-lib"
license.workspace = true
repository.workspace = true
authors.workspace = true
[lib]
name = "type_bridge_orm"
path = "src/lib.rs"
[[bin]]
name = "type-bridge-codegen"
path = "src/bin/codegen.rs"
[features]
default = ["band7", "band8"]
typedb = ["dep:type-bridge-typedb-runtime"]
band7 = ["typedb", "type-bridge-typedb-runtime/band7"]
band8 = ["typedb", "type-bridge-typedb-runtime/band8"]
derive = ["dep:type-bridge-orm-derive"]
integration-tests = ["derive", "band7", "band8"]
[dependencies]
type-bridge-core-lib = { path = "../core", version = "1.5.3" }
type-bridge-typedb-runtime = { path = "../typedb-runtime", version = "1.5.3", default-features = false, optional = true }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
tracing = "0.1"
type-bridge-orm-derive = { path = "../orm-derive", version = "1.5.3", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "serde"
harness = false
[[bench]]
name = "query_building"
harness = false
[lints]
workspace = true