-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (49 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
60 lines (49 loc) · 1.5 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
[workspace]
resolver = "2"
members = [
# Core (Tier 1 - publishable as lib, no platform dependencies)
"core/orchestral-core",
"core/orchestral-runtime",
"core/orchestral",
# Apps
"apps/orchestral-cli",
"apps/orchestral-telegram",
# Examples
"examples",
]
[workspace.package]
version = "0.2.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/sizzlecar/orchestral"
homepage = "https://github.com/sizzlecar/orchestral"
keywords = ["orchestration", "agent", "workflow", "llm", "dag"]
categories = ["asynchronous", "command-line-utilities"]
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["rt"] }
async-trait = "0.1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
# Time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "1"
# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
futures-util = "0.3"
bytes = "1"
# Internal crates - Core
orchestral = { path = "core/orchestral" }
orchestral-core = { path = "core/orchestral-core", version = "0.2.0" }
orchestral-runtime = { path = "core/orchestral-runtime", version = "0.2.0" }
[workspace.dependencies.tokio-test]
version = "0.4"