coreason-runtime 0.1.0

Kinetic Plane execution engine for the CoReason Tripartite Cybernetic Manifold
Documentation
[package]
name = "coreason-runtime"
version = "0.1.0"
edition = "2021"
description = "Kinetic Plane execution engine for the CoReason Tripartite Cybernetic Manifold"
license-file = "LICENSE"
authors = ["CoReason, Inc <license@coreason.ai>"]
repository = "https://github.com/CoReason-AI/coreason-runtime"
homepage = "https://github.com/CoReason-AI/coreason-runtime"

[lib]
name = "coreason_runtime_rust"
crate-type = ["rlib"]
doctest = false

[[bin]]
name = "coreason-gateway"
path = "src/main.rs"

[features]
default = []

[dependencies]
sha2 = "0.10.8"
memmap2 = "0.9.4"
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
dashmap = "6.0.1"
rayon = "1.10.0"
tokio = { version = "1.35", features = ["full"] }
axum = { version = "0.7", features = ["ws"] }
tower-http = { version = "0.5", features = ["cors"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures-util = "0.3"
clap = { version = "4.4", features = ["derive"] }
extism = "1.21.0"
rand = "0.8"
ureq = { version = "2.9.1", features = ["json"] }
chrono = { version = "0.4", features = ["serde"] }
petgraph = "0.6.5"
async-nats = "0.48"
tract-onnx = "0.21.6"
# Zero Waste: OSS crates for solved problems
logp = "0.2"                   # KL divergence, Jensen-Shannon, Shannon entropy (information theory)
hex = "0.4"                    # Hex encoding/decoding (replaces hand-rolled decode_hex)
opendal = { version = "0.52", features = ["services-s3", "services-fs", "services-memory"] }  # Universal data access layer (Apache Foundation)
olpc-cjson = "0.1"             # RFC 8785 Canonical JSON serialization (replaces hand-rolled canonicalize_state)
content_inspector = "0.2"     # Text vs binary detection (replaces hand-rolled is_text_bytes)

[profile.dev]
debug = 0

[profile.test]
debug = 0