bascule-workspace/bascule-tail/Cargo.toml
Tyler King b1865a0627 initial: bascule v0.1.0
Bascule shell runtime workspace — governed shell access layer
for Substrate/Guildhouse FFC deployments.

Crates:
- bascule-agent: node agent with SSH server + command filtering
- bascule-core: audit, grant engine, ceremony types, session
- bascule-filter-core: log line filtering (stdio protocol)
- bascule-gateway: OIDC auth, session management, SAT validation
- bascule-node-agent: k8s DaemonSet agent (pod watcher, BPF manager)
- bascule-proto: protobuf definitions
- bascule-shell: governed SSH shell (commands, elevation, REPL)
- bascule-tail: chronicle log tail + fanout
- ceremony-engine: ceremony lifecycle (6 types + request/resolution)

172 tests passing.
Implements SBS-SPEC-0001 shell model.
Reference impl for SPEC-SHELLOPS-0001 Layer 1 (root shell).
2026-03-18 16:40:48 -04:00

40 lines
758 B
TOML

[package]
name = "bascule-tail"
version = "0.1.0"
edition = "2021"
description = "Governed pod log streaming for the Substrate governance fabric"
[[bin]]
name = "bascule-tail"
path = "src/main.rs"
[dependencies]
bascule-filter-core = { workspace = true }
bascule-proto = { workspace = true }
# CLI
clap = { workspace = true }
# gRPC
tonic = { workspace = true }
prost-types = { workspace = true }
# Async
tokio = { workspace = true }
# Serialization
serde_json = { workspace = true }
# Observability
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Common
anyhow = { workspace = true }
regex = "1"
# Future: binary discovery
which = { workspace = true }
[dev-dependencies]
# (tests use bascule-filter-core types directly)