bascule-workspace/bascule-node-agent/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

39 lines
810 B
TOML

[package]
name = "bascule-node-agent"
version = "0.1.0"
edition = "2021"
description = "Bascule node agent — DaemonSet for per-node shell admission and webhook emission"
[[bin]]
name = "bascule-node-agent"
path = "src/main.rs"
[dependencies]
# Kubernetes
kube = { workspace = true }
k8s-openapi = { workspace = true }
# HTTP (webhook emission)
reqwest = { workspace = true }
# Async
tokio = { workspace = true }
tokio-util = "0.7"
futures = "0.3"
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Observability
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Common
uuid = { workspace = true }
chrono = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
# TLS (required by kube)
rustls = { workspace = true }