-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 1.01 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
[package]
authors.workspace = true
edition.workspace = true
license.workspace = true
name = "ahma_core"
readme.workspace = true
rust-version.workspace = true
version.workspace = true
description = "Core library for embedding ahma's sandbox and MCP service in other Rust applications (MIT OR Apache-2.0). AGPL-licensed feature crates (ahma_vault, ahma_task_tree, ahma_tui, ahma_cluster) are available separately."
[lib]
name = "ahma_core"
path = "src/lib.rs"
[dependencies]
ahma_mcp = { path = "../ahma_mcp" }
ahma_common = { path = "../ahma_common" }
ahma_llm_monitor = { path = "../ahma_llm_monitor" }
anyhow.workspace = true
chrono.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { version = "1.52", features = ["full"] }
tracing.workspace = true
reqwest = { workspace = true, features = ["json", "rustls"] }
uuid.workspace = true
futures.workspace = true
async-trait.workspace = true
dirs.workspace = true
[dev-dependencies]
axum = { version = "0.8", features = ["tokio"] }
tempfile.workspace = true