[package]
edition = "2024"
rust-version = "1.91"
name = "memstead-schema"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema types for Memstead — entity definitions, vocabulary, and validation rules. Internal library surface consumed by the memstead binaries — pre-1.0, experimental, no API stability promise."
homepage = "https://memstead.io"
readme = "README.md"
keywords = [
"agent-memory",
"knowledge-graph",
"schema",
"markdown",
"validation",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/memstead/memstead"
resolver = "2"
[lib]
name = "memstead_schema"
path = "src/lib.rs"
[[bin]]
name = "emit_json_schemas"
path = "src/bin/emit_json_schemas.rs"
[[test]]
name = "config_fixtures"
path = "tests/config_fixtures.rs"
[[test]]
name = "json_schemas"
path = "tests/json_schemas.rs"
[[test]]
name = "loader"
path = "tests/loader.rs"
[dependencies.include_dir]
version = "0.7"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.schemars]
version = "1.0"
features = [
"derive",
"indexmap2",
"semver1",
]
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
result_large_err = "allow"