blue/apps/blue-cli/Cargo.toml
Eric Garcia 940701d191 feat: Add Rust workspace and MCP server skeleton
- Rename from 💙 to blue for filesystem compatibility
- Add blue-core crate with documents and voice modules
- Add blue-mcp crate with JSON-RPC server skeleton
- Add blue-cli with subcommands (init, status, rfc, etc.)
- Add CLAUDE.md and .gitignore
- Add RFC 0001: Efficient Document Format

Phase 1 foundation complete. Ready for porting coherence-mcp functionality.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 16:51:04 -05:00

19 lines
382 B
TOML

[package]
name = "blue"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Blue CLI - Welcome home"
[[bin]]
name = "blue"
path = "src/main.rs"
[dependencies]
blue-core.workspace = true
blue-mcp.workspace = true
clap.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true