-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.04 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
[workspace]
resolver = "2"
members = [
"crates/rexos",
"crates/loopforge-cli",
"crates/rexos-skills",
"crates/rexos-daemon",
"crates/rexos-harness",
"crates/rexos-kernel",
"crates/rexos-llm",
"crates/rexos-memory",
"crates/rexos-runtime",
"crates/rexos-tools",
]
[workspace.package]
version = "1.3.0"
edition = "2021"
license = "MIT"
rust-version = "1.75"
[workspace.dependencies]
anyhow = "1"
axum = "0.8"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
dirs = "5"
hmac = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serial_test = "3"
semver = { version = "1", features = ["serde"] }
sha2 = "0.10"
tempfile = "3"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "process", "time"] }
toml = "0.8"
tower = { version = "0.5", features = ["util"] }
uuid = { version = "1", features = ["v4"] }