[package]
name = "datasphere"
version = "0.2.0"
edition = "2024"
description = "Background daemon that distills knowledge from Claude Code sessions into a searchable graph"
license = "LicenseRef-Proprietary"
repository = "https://github.com/cloud-atlas-ai/datasphere"
[[bin]]
name = "ds"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4.42", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
lancedb = "0.23.1"
arrow-array = "56"
arrow-schema = "56"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "signal"] }
futures = "0.3"
reqwest = { version = "0.13", features = ["json"] }
tiktoken-rs = "0.9"
semchunk-rs = "0.1"
simhash = "0.2"
notify = "8.2.0"
dirs = "6"
walkdir = "2"
which = "7"
libc = "0.2"
[dev-dependencies]
tempfile = "3"