-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (73 loc) · 2.15 KB
/
Cargo.toml
File metadata and controls
91 lines (73 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[workspace]
resolver = "2"
members = [
"crates/thulp-core",
"crates/thulp-query",
"crates/thulp-adapter",
"crates/thulp-workspace",
"crates/thulp-browser",
"crates/thulp-guidance",
"crates/thulp-registry",
"crates/thulp-mcp",
"crates/thulp-skills",
"crates/thulp-skill-files",
"crates/thulp-cli",
"examples",
]
[workspace.package]
version = "0.3.1"
edition = "2021"
authors = ["Dirmacs <contact@dirmacs.org>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dirmacs/thulp"
description = "Execution context engineering platform for AI agents"
rust-version = "1.75"
[workspace.dependencies]
# Internal crates
thulp-core = { path = "crates/thulp-core" }
thulp-query = { path = "crates/thulp-query" }
thulp-mcp = { path = "crates/thulp-mcp" }
thulp-adapter = { path = "crates/thulp-adapter" }
thulp-workspace = { path = "crates/thulp-workspace" }
thulp-skills = { path = "crates/thulp-skills" }
thulp-skill-files = { path = "crates/thulp-skill-files" }
thulp-browser = { path = "crates/thulp-browser" }
thulp-guidance = { path = "crates/thulp-guidance" }
thulp-registry = { path = "crates/thulp-registry" }
# Async runtime
tokio = { version = "1.43", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# Async traits
async-trait = "0.1"
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Logging/tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Parser combinators (for query engine)
nom = "7.1"
# Templating (for skills)
tera = "1.20"
# Note: ares-server integration must be added to individual crate Cargo.toml files
# Use: cargo build --features ares-server
# rs-utcp integration
# rs-utcp = "0.3" # Requires protoc - will add back later
# Testing dependencies for workspace members
proptest = "1.5"
criterion = "0.5"
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dev]
debug = true
[profile.test]
debug = true