This website requires JavaScript.
Explore
Help
Sign in
kent
/
consciousness
Watch
1
Star
0
Fork
You've already forked consciousness
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
d167b11283
consciousness
/
.cargo
/
config.toml
3 lines
99 B
TOML
Raw
Normal View
History
Unescape
Escape
daemon: resource-gated scheduling, fact-mine integration, systemd Daemon improvements: - Use jobkit's new .resource(&pool) API instead of pool.acquire() inside closures — tasks wait in the pool's queue, not on worker threads - LLM pool capacity 1 to control token burn rate - Workers reduced from 7 to 4 (2 loops + 2 for jobs) - Session watcher: per-tick stats logging (stale/mined/open/queued) - Log rotation: truncate to last half when over 1MB - Duration tracking and stderr capture for job failures - Process uptime shown in status display - Replace fuser subprocess with /proc/*/fd/ scan Fact-mine integration: - mine_and_store() writes extracted facts to store nodes - fact-mine-store CLI subcommand for daemon to shell out to - Chained as dependent task after experience-mine per session Infra: - systemd user service at ~/.config/systemd/user/poc-memory.service - .cargo/config.toml: force frame pointers for profiling
2026-03-05 15:31:08 -05:00
[
build
]
build: add tokio_unstable and codegen-units to cargo config console-subscriber (used by jobkit's console feature) requires tokio to be built with --cfg tokio_unstable. Move this and codegen-units=6 from RUSTFLAGS env var to .cargo/config.toml so per-project cargo config actually works (env var RUSTFLAGS overrides config.toml). Also remove invalid frame-pointer keys from Cargo.toml profile sections — frame pointers are already handled via -Cforce-frame-pointers in the config.toml rustflags. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-21 15:04:38 -04:00
rustflags
=
[
"-Cforce-frame-pointers=yes"
,
"-Ccodegen-units=6"
,
"--cfg"
,
"tokio_unstable"
]
Reference in a new issue
Copy permalink