initial commit

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2025-11-15 23:42:12 +00:00
commit 2bad250a04
47 changed files with 14645 additions and 0 deletions

58
crates/server/Cargo.toml Normal file
View File

@@ -0,0 +1,58 @@
[package]
name = "server"
version = "0.1.0"
edition.workspace = true
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
# Bevy (headless)
bevy = { version = "0.17", default-features = false, features = [
"bevy_state",
] }
# Iroh - P2P networking and gossip
iroh = { workspace = true }
iroh-gossip = { workspace = true }
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
futures-lite = "2.5"
# Database
rusqlite = { version = "0.37.0", features = ["bundled", "column_decltype", "load_extension"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Date/time
chrono = { version = "0.4", features = ["serde"] }
# Random number generation
rand = "0.8"
# ML/AI - Candle for inference (using newer versions with better compatibility)
candle-core = "0.8"
candle-nn = "0.8"
candle-transformers = "0.8"
tokenizers = "0.20"
hf-hub = "0.3"
# Synchronization
parking_lot = { workspace = true }
# Local dependencies
lib = { path = "../lib" }