RFC 0008: Status updates now sync to markdown files, not just DB RFC 0009: Add Audit as first-class document type, rename blue_audit to blue_health_check to avoid naming collision Also includes: - Update RFC 0005 with Ollama auto-detection and bundled Goose support - Mark RFCs 0001-0006 as Implemented - Add spikes documenting investigations Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
701 B
TOML
32 lines
701 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
|
|
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
|
|
|
|
[dev-dependencies]
|
|
tower.workspace = true
|
|
http-body-util.workspace = true
|
|
tempfile.workspace = true
|