-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.44 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.44 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
43
44
45
46
47
48
49
[package]
name = "moa-cli"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "moa"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
base64.workspace = true
blake3.workspace = true
chrono.workspace = true
clap.workspace = true
dirs.workspace = true
ed25519-dalek.workspace = true
flate2 = "1"
hex.workspace = true
moa-auth-providers.workspace = true
moa-core = { path = "../moa-core" }
moa-eval = { path = "../moa-eval" }
moa-brain = { path = "../moa-brain" }
moa-lineage-audit = { path = "../moa-lineage/audit" }
moa-lineage-core = { path = "../moa-lineage/core" }
moa-lineage-sink = { path = "../moa-lineage/sink" }
moa-memory-graph = { path = "../moa-memory/graph" }
moa-memory-ingest = { path = "../moa-memory/ingest" }
moa-memory-vector = { path = "../moa-memory/vector" }
moa-orchestrator-client = { path = "../moa-orchestrator-client" }
moa-runtime = { path = "../moa-runtime" }
moa-session = { path = "../moa-session" }
moa-skills = { path = "../moa-skills" }
reqwest = { workspace = true, features = ["form"] }
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
sqlx = { workspace = true, features = ["tls-rustls", "chrono", "json", "uuid"] }
tar = "0.4"
tokio.workspace = true
toml.workspace = true
tracing.workspace = true
uuid.workspace = true
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies]
async-trait.workspace = true
tempfile.workspace = true