blue/crates/blue-core/Cargo.toml
Eric Garcia 6ff8ba706c feat: RFC 0038 SDLC workflow discipline implementation
- Add `blue guard` CLI command for PreToolUse hook integration
  - Allowlist patterns for .blue/docs/, .claude/, /tmp/, root *.md
  - Worktree detection and RFC branch validation
  - Audit logging for bypass tracking
- Add PreToolUse hook in .claude/settings.json
- Add produces_rfcs field to Spike struct for multi-RFC tracking
- Implement spike auto-close when RFC transitions to implemented
- Add ADR suggestions when RFC transitions to in-progress
- Add LocalRealmDependencies for .blue/realm.toml parsing
- Add blue_rfc_validate_realm tool for cross-repo RFC validation
- Add toml dependency for realm.toml parsing

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 08:59:20 -05:00

34 lines
745 B
TOML

[package]
name = "blue-core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Core data structures and logic for Blue"
[features]
test-helpers = []
[dependencies]
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
toml.workspace = true
thiserror.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
rusqlite.workspace = true
chrono.workspace = true
git2.workspace = true
axum.workspace = true
tower-http.workspace = true
reqwest.workspace = true
dirs.workspace = true
semver.workspace = true
regex.workspace = true
sha2.workspace = true
[dev-dependencies]
tower.workspace = true
http-body-util.workspace = true
tempfile.workspace = true