[package]
edition = "2024"
rust-version = "1.85"
name = "maxt-bindings-common"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Language-neutral adapter bridge for maxt language bindings."
homepage = "https://github.com/jabdori/maxt"
documentation = "https://docs.rs/maxt-bindings-common"
readme = "README.md"
license = "MIT"
repository = "https://github.com/jabdori/maxt"
[features]
codegen = []
[lib]
name = "maxt_bindings_common"
path = "src/lib.rs"
[[test]]
name = "adapter_inventory"
path = "tests/adapter_inventory.rs"
[[test]]
name = "coverage_inventory"
path = "tests/coverage_inventory.rs"
[[test]]
name = "foreign_adapter"
path = "tests/foreign_adapter.rs"
[[test]]
name = "schema_inventory"
path = "tests/schema_inventory.rs"
[dependencies.maxt]
version = "=0.2.1"
[dev-dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[dev-dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[lints.clippy]
all = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"