initial commit
This commit is contained in:
commit
d2f5881838
13 changed files with 6848 additions and 0 deletions
47
Cargo.toml
Normal file
47
Cargo.toml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[package]
|
||||
name = "consciousness-claude"
|
||||
version = "0.4.0"
|
||||
edition = "2024"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 2
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
dirs = "6"
|
||||
env_logger = "0.11"
|
||||
log = "0.4"
|
||||
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
libc = "0.2"
|
||||
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
tokio-util = { version = "0.7", features = ["compat"] }
|
||||
futures = "0.3"
|
||||
capnp = "0.25"
|
||||
capnp-rpc = "0.25"
|
||||
|
||||
consciousness = { path = "/home/kent/poc/consciousness" }
|
||||
|
||||
[build-dependencies]
|
||||
capnpc = "0.25"
|
||||
|
||||
[[bin]]
|
||||
name = "poc-hook"
|
||||
path = "src/poc-hook.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "poc-daemon"
|
||||
path = "src/poc-daemon.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "memory-search"
|
||||
path = "src/memory-search.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "consciousness-mcp"
|
||||
path = "src/mcp-server.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue