consciousness/Cargo.toml
Kent Overstreet 0a62832fe3 Upgrade workspace to edition 2024, add --local flag to agent run
Edition 2024 changes:
- gen is reserved: rename variable in query/engine.rs
- set_var is unsafe: wrap in unsafe block in cli/agent.rs
- match ergonomics: add explicit & in spectral.rs filter closure

New --local flag for `poc-memory agent run` bypasses the daemon and
runs the agent directly in-process. Useful for testing agent prompt
changes without waiting in the daemon queue.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 22:44:36 -04:00

15 lines
265 B
TOML

[workspace]
members = ["poc-memory", "poc-daemon", "jobkit-daemon", "poc-agent"]
resolver = "2"
[workspace.package]
version = "0.4.0"
edition = "2024"
[profile.release]
opt-level = 2
debug = 1
frame-pointer = "always"
[profile.release.package."*"]
debug = false