[package]
edition = "2021"
rust-version = "1.80"
name = "substrate-core"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hexagonal core contracts (domain + ports) for substrate. Depends on nothing but serde/thiserror/uuid/async-trait."
readme = "README.md"
keywords = [
"agent",
"hexagonal",
"ports",
"dispatch",
"substrate",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/KooshaPari/substrate"
[lib]
name = "substrate_core"
path = "src/lib.rs"
[[test]]
name = "event_sourcing"
path = "tests/event_sourcing.rs"
[[test]]
name = "fsm"
path = "tests/fsm.rs"
[[test]]
name = "process_superset"
path = "tests/process_superset.rs"
[[test]]
name = "routing_superset"
path = "tests/routing_superset.rs"
[[test]]
name = "tiers"
path = "tests/tiers.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"serde",
]