[package]
edition = "2024"
rust-version = "1.88"
name = "type-bridge"
version = "2.2.0"
authors = ["ds1sqe"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Public client SDK for TypeBridge"
documentation = "https://docs.rs/type-bridge/2.2.0"
readme = "README.md"
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/ds1sqe/type-bridge"
[features]
band8 = [
"typedb",
"type-bridge-orm/band8",
]
band9 = [
"typedb",
"type-bridge-orm/band9",
]
default = [
"typedb",
"band8",
"band9",
]
test-harness = []
typedb = [
"type-bridge-orm/typedb",
"dep:type-bridge-schema-migration-typedb",
]
[lib]
name = "type_bridge"
path = "src/lib.rs"
[[test]]
name = "client_boundary"
path = "tests/client_boundary.rs"
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.type-bridge-contract]
version = "2.2.0"
[dependencies.type-bridge-orm]
version = "2.2.0"
default-features = false
[dependencies.type-bridge-orm-derive]
version = "2.2.0"
[dependencies.type-bridge-schema]
version = "2.2.0"
[dependencies.type-bridge-schema-codegen]
version = "2.2.0"
[dependencies.type-bridge-schema-migration]
version = "2.2.0"
[dependencies.type-bridge-schema-migration-typedb]
version = "2.2.0"
optional = true
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.type-bridge-contract]
version = "2.2.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(coverage_nightly)",
"cfg(coverage)",
]