-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
95 lines (80 loc) · 2.86 KB
/
Copy pathCargo.toml
File metadata and controls
95 lines (80 loc) · 2.86 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
92
93
94
[workspace]
members = [
"crates/aura",
"crates/aura-config",
"crates/aura-events",
"crates/aura-telemetry",
"crates/aura-telemetry-derive",
"crates/aura-web-server",
"crates/aura-test-utils",
"crates/aura-cli",
]
default-members = [
"crates/aura",
"crates/aura-config",
"crates/aura-events",
"crates/aura-telemetry",
"crates/aura-telemetry-derive",
"crates/aura-web-server",
"crates/aura-test-utils",
"crates/aura-cli",
]
resolver = "3"
[workspace.package]
version = "0.1.8"
edition = "2024"
authors = ["Mezmo <support@mezmo.com>"]
license = "Apache-2.0"
repository = "https://github.com/mezmo/aura"
[workspace.dependencies]
rig-core = { git = "https://github.com/mezmo/rig.git", rev = "e6f008eaf555733d93368c9dd174d1d61d7d096d", default-features = false, features = ["rmcp", "reqwest-rustls"] }
# Pinned to exact versions compatible with our rig-core 0.28.x fork.
# Newer versions pull in rig-core 0.31+ which is semver-incompatible with the fork.
rig-bedrock = "=0.3.10"
# MCP support
rmcp = { version = "0.12.0", features = ["transport-child-process", "client", "transport-streamable-http-client", "transport-streamable-http-client-reqwest"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
toml_edit = { version = "0.22", features = ["serde"] }
# Async runtime
tokio = { version = "1.45", features = ["full", "test-util"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
opentelemetry = "0.27"
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.27", features = ["tonic"] }
tracing-opentelemetry = "0.28"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Configuration management
twelf = { version = "0.15", features = ["toml", "json", "yaml", "env", "clap"] }
config = { version = "0.14", features = ["toml"] } # Alternative for custom handling
# Environment variables
dotenvy = "0.15"
regex = "1.11"
# Vector stores - pinned to exact version compatible with our rig-core 0.28.x fork
rig-qdrant = "=0.1.34"
qdrant-client = "1.14.0"
uuid = { version = "1.0", features = ["v4", "v7", "serde"] }
# Enum utilities
strum = { version = "0.26", features = ["derive"] }
# AWS Bedrock dependencies
aws-config = "1.8.0"
aws-sdk-bedrockruntime = "1.95.0"
aws-sdk-bedrockagentruntime = "1.125.0"
aws-smithy-types = "1.3.2"
base64 = "0.22.1"
async-stream = "0.3.6"
schemars = "1.0.4"
reqwest = { version = "0.12", default-features = false, features = ["charset", "http2", "system-proxy", "json", "stream", "rustls-tls"] }
http = "1.0"
# Patch rig-core to use the fork with streaming hook + span propagation fix
[patch.crates-io]
rig-core = { git = "https://github.com/mezmo/rig.git", rev = "e6f008eaf555733d93368c9dd174d1d61d7d096d" }