[package]
edition = "2024"
name = "ix-schema"
version = "0.2.1"
authors = ["intentos-dev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A universal meta-interface for data structures: compile-time semantic manifests bridging memory layout and serialization, with enforced schema evolution."
readme = "README.md"
keywords = [
"serialization",
"schema",
"layout",
"zerocopy",
"no-std",
]
categories = [
"encoding",
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MerlijnW70/ix-schema"
[lib]
name = "ix_schema"
path = "src/lib.rs"
[[test]]
name = "chain"
path = "tests/chain.rs"
[[test]]
name = "compat"
path = "tests/compat.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "migrate"
path = "tests/migrate.rs"
[[test]]
name = "removal"
path = "tests/removal.rs"
[dependencies.ix-schema-derive]
version = "0.2.1"