consciousness/Cargo.toml
Kent Overstreet a421c3c9f3 Upgrade capnp 0.20 → 0.25, capnp-rpc 0.20 → 0.25
RPC trait methods changed from &mut self to self: Rc<Self> and
return types from Promise<(), Error> to impl Future<Output = Result<...>>.

Updated all Server impls across 6 files: DaemonImpl (rpc.rs),
NotifyForwarder (channels.rs), and ChannelServerImpl in all channel
crates (irc, telegram, tmux, socat). Local pry! macro replaces
capnp_rpc::pry to match the new impl Future return type.

Warning-clean workspace build.

Co-Authored-By: Proof of Concept <poc@bcachefs.org>
2026-04-07 12:29:44 -04:00

101 lines
2.1 KiB
TOML

[workspace]
members = ["channels/irc", "channels/telegram", "channels/tmux", "channels/socat"]
resolver = "2"
[workspace.package]
version = "0.4.0"
edition = "2024"
[profile.release]
opt-level = 2
debug = 1
[profile.release.package."*"]
debug = false
[package]
name = "poc-memory"
version.workspace = true
edition.workspace = true
[dependencies]
capnp = "0.25"
uuid = { version = "1", features = ["v4"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
json5 = "1.3"
bincode = "1"
regex = "1"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
libc = "0.2"
rkyv = { version = "0.7", features = ["validation", "std"] }
memchr = "2"
memmap2 = "0.9"
rayon = "1"
peg = "0.8"
paste = "1"
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
glob = "0.3"
anyhow = "1"
base64 = "0.22"
dirs = "6"
futures = "0.3"
tiktoken-rs = "0.9.1"
figment = { version = "0.10", features = ["env"] }
tui-markdown = "0.3"
tui-textarea = { version = "0.10.2", package = "tui-textarea-2" }
redb = "2"
log = "0.4"
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
crossterm = { version = "0.29", features = ["event-stream"] }
skillratings = "0.28"
capnp-rpc = "0.25"
tokio-util = { version = "0.7", features = ["compat"] }
env_logger = "0.11"
tokio-scoped = "0.2.0"
[build-dependencies]
capnpc = "0.25"
[lib]
name = "poc_memory"
path = "src/lib.rs"
[[bin]]
name = "consciousness"
path = "src/bin/consciousness.rs"
[[bin]]
name = "poc-memory"
path = "src/main.rs"
[[bin]]
name = "merge-logs"
path = "src/bin/merge-logs.rs"
[[bin]]
name = "diag-key"
path = "src/bin/diag-key.rs"
[[bin]]
name = "find-deleted"
path = "src/bin/find-deleted.rs"
[[bin]]
name = "poc-hook"
path = "src/claude/poc-hook.rs"
[[bin]]
name = "poc-daemon"
path = "src/claude/poc-daemon.rs"
[[bin]]
name = "memory-search"
path = "src/claude/memory-search.rs"
[[bin]]
name = "consciousness-mcp"
path = "src/claude/mcp-server.rs"