-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[workspace]
resolver = "3"
members = ["crates/proto", "crates/node", "crates/agent", "crates/controller"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/gmorell/devendra"
[workspace.dependencies]
devendra-proto = { path = "crates/proto" }
devendra-node = { path = "crates/node" }
# Async runtime + errors + logging (shared across all crates)
tokio = { version = "1.47", features = ["rt-multi-thread", "macros", "signal", "sync", "time", "fs", "process"] }
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Content addressing (matches iroh-blobs' BLAKE3)
blake3 = "1.5"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# iroh p2p + document sync. Pinned to the coherent 1.0 stack (2026-07):
# iroh 1.0 <- iroh-blobs 0.103 <- iroh-docs 0.101 (which requires exactly these).
iroh = "1"
iroh-blobs = "0.103"
iroh-docs = "0.101"
iroh-gossip = "0.101"
# Stream/byte helpers used alongside iroh
bytes = "1"
futures-lite = "2"