ARCHITECTURE.md explains the governed shell stack, Keylime integration model, ShellClass derivation, and implementation status for reviewer orientation. CHANGELOG documents v0.1.0-rc.1 deliverables. Cargo.toml metadata (license, repository) added to bascule-core, bascule-agent, bascule-gateway. Signed-off-by: Tyler King <tking@guildhouse.dev> Signed-off-by: Tyler J King <tking727@gmail.com>
28 lines
1,022 B
TOML
28 lines
1,022 B
TOML
[package]
|
|
name = "bascule-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Shared types for the Bascule governance-mediated access control system"
|
|
license = "Apache-2.0"
|
|
repository = "https://git.guildhouse.dev/guildhouse/bascule"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_json_canonicalizer = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true }
|
|
# Governance ceremony state machine (extracted)
|
|
ceremony-engine = { workspace = true }
|
|
|
|
# Cross-workspace path deps — Guildhouse governance primitives.
|
|
accord-core = { path = "../../guildhouse/services/accord-core" }
|
|
registry-protocol = { path = "../../guildhouse/services/registry-protocol" }
|
|
|
|
# Cross-workspace path dep — substrate governance types (for PostureLevel).
|
|
governance-types = { path = "../../substrate/crates/governance-types" }
|