[package]
edition = "2021"
rust-version = "1.70"
name = "omwei-atom"
version = "0.1.3"
authors = ["32BSA Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core implementation of the OMWEI 32B Semantic Atom (32BSA) standard. The universal grammar for Agentic AI and Industrial IoT Integrity."
homepage = "https://github.com/LelloOmwei/omwei-atom"
documentation = "https://docs.rs/omwei-atom"
readme = "README.md"
keywords = [
"iot",
"semantic",
"atom",
"32bsa",
"industry4",
]
categories = [
"data-structures",
"embedded",
"network-programming",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/LelloOmwei/omwei-atom"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
pqc = ["dep:sha2"]
serde = [
"dep:serde",
"dep:serde_json",
]
std = [
"serde?/std",
"sha2?/std",
]
[lib]
name = "omwei_atom"
path = "src/lib.rs"
[[example]]
name = "mock_entities"
path = "examples/mock_entities.rs"
[[example]]
name = "usage_demo"
path = "examples/usage_demo.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false
[dependencies.serde_json]
version = "1.0"
optional = true
[dependencies.sha2]
version = "0.10"
optional = true
default-features = false
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.sha2]
version = "0.10"