[package]
edition = "2024"
rust-version = "1.88"
name = "blut-graph-core"
version = "0.3.0"
authors = ["Brian Lam"]
build = false
include = [
"/src/**",
"/tests/**",
"/examples/**",
"/Cargo.toml",
"/README.md",
"/LICENSE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic no_std semantic compiler for capability-driven node graphs: kind-checks declared determinism, effect and partiality, fuses only where semantics are preserved, and lowers to an execution realm."
documentation = "https://docs.rs/blut-graph-core"
readme = "README.md"
keywords = [
"dag",
"compiler",
"semantics",
"pipeline",
"no-std",
]
categories = [
"compilers",
"no-std",
"development-tools",
]
license = "AGPL-3.0-or-later"
[features]
default = ["std"]
std = [
"serde/std",
"blake3/std",
]
[lib]
name = "blut_graph_core"
path = "src/lib.rs"
[[example]]
name = "graph_evidence"
path = "examples/graph_evidence.rs"
[[example]]
name = "runtime_execution_probe"
path = "examples/runtime_execution_probe.rs"
[[test]]
name = "subgraph_lowering"
path = "tests/subgraph_lowering.rs"
[[test]]
name = "wire_stability"
path = "tests/wire_stability.rs"
[dependencies.blake3]
version = "1"
features = ["pure"]
default-features = false
[dependencies.postcard]
version = "1"
features = ["alloc"]
default-features = false
[dependencies.serde]
version = "1"
features = [
"alloc",
"derive",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"