-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
127 lines (122 loc) · 3.84 KB
/
Cargo.toml
File metadata and controls
127 lines (122 loc) · 3.84 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[workspace]
members = ["crates/*", "nexus"]
resolver = "2"
[workspace.package]
edition = "2024"
license = "MPL-2.0"
homepage = "https://grafbase.com"
keywords = ["nexus", "llm", "ai", "mcp"]
repository = "https://github.com/grafbase/nexus"
[workspace.dependencies]
anyhow = "1.0.98"
ascii = { version = "1.1.0", features = ["serde"] }
async-trait = "0.1.83"
aws-config = { version = "1.5", features = ["behavior-version-latest"] }
aws-credential-types = "1.2"
aws-sdk-bedrock = { version = "1.72", features = ["behavior-version-latest"] }
aws-sdk-bedrockruntime = { version = "1.72", features = ["behavior-version-latest"] }
aws-smithy-runtime-api = "1.7"
aws-smithy-types = "1.2"
axum = { version = "0.8.4", features = ["macros"] }
axum-serde = { version = "0.9.0", features = ["sonic"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
base64 = "0.22.1"
clap = "4.5.41"
clickhouse = { version = "0.13", features = ["lz4"] }
config = { path = "crates/config" }
context = { path = "crates/context" }
convert_case = "0.8.0"
ctor = "0.5.0"
dashmap = "6.1.0"
deadpool = { version = "0.12", features = ["managed", "rt_tokio_1"] }
duration-str = "0.17"
eventsource-stream = "0.2.3"
fast-glob = "1.0.0"
indexmap = "2.7.0"
serde_with = "3"
strum = { version = "0.27", features = ["derive"] }
# TODO: use crates.io again when this one is released: https://github.com/fast/fastrace/pull/134
# fastrace = "0.7.14"
# fastrace-futures = "0.7.5"
# fastrace-opentelemetry = "0.13.0"
fastrace = { git = "https://github.com/pimeys/fastrace.git", branch = "julius/slsstmntvwuy" }
fastrace-futures = { git = "https://github.com/pimeys/fastrace.git", branch = "julius/slsstmntvwuy" }
fastrace-opentelemetry = { git = "https://github.com/pimeys/fastrace.git", branch = "julius/slsstmntvwuy" }
fastrace-utils = { path = "crates/fastrace-utils" }
futures = "0.3.31"
futures-util = "0.3.31"
governor = { version = "0.10", features = ["std", "jitter"] }
header-rules = { path = "crates/header-rules" }
http = "1.3.1"
http-body = "1.0.1"
http-body-util = "0.1"
indoc = "2.0.6"
insta = "1.43.1"
integration-test-macros = { path = "crates/integration-test-macros" }
itertools = "0.14.0"
jiff = "0.2.13"
jwt-compact = "0.8.0"
llm = { version = "0.1.0", path = "crates/llm" }
log = "0.4.27"
logforth = "0.27.0"
mcp = { version = "0.1.0", path = "crates/mcp" }
md5 = "0.8"
mini-moka = "0.10"
opentelemetry = "0.31"
opentelemetry-otlp = { version = "0.31", features = [
"logs",
"metrics",
"trace",
"grpc-tonic",
"http-proto",
"tls",
"tls-roots",
] }
opentelemetry-semantic-conventions = "0.31"
opentelemetry_sdk = { version = "0.31", features = ["logs", "metrics", "trace", "rt-tokio"] }
pin-project = "1"
proc-macro2 = "1"
quote = "1.0"
rand = "0.9"
rate-limit = { version = "0.1.0", path = "crates/rate-limit" }
redis = { version = "0.32.0", features = ["tokio-rustls-comp", "connection-manager"] }
regex = "1.11.1"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls-webpki-roots",
"charset",
"http2",
"macos-system-configuration",
] }
rmcp = "0.7.0"
rustls = { version = "0.23", features = ["aws-lc-rs"] }
schemars = "1.0"
secrecy = "0.10.3"
serde = "1.0.219"
serde-dynamic-string = { path = "crates/serde-dynamic-string" }
serde_json = "1.0"
server = { path = "crates/server" }
sha2 = "0.10"
sonic-rs = "0.5.3"
syn = { version = "2.0", features = ["full", "parsing"] }
tantivy = "0.25.0"
telemetry = { path = "crates/telemetry" }
temp-env = "0.3"
tempfile = "3.14.0"
thiserror = "2.0.12"
tiktoken-rs = "0.7"
tokio = { version = "1.46.1", default-features = false }
tokio-util = "0.7"
toml = "0.9.2"
tonic = "0.14"
tower = "0.5.2"
tower-http = "0.6.6"
url = "2.5.4"
uuid = "1.17.0"
[profile.release]
lto = "thin"
[workspace.lints.rust]
nonstandard-style = "deny"
rust-2018-idioms = "deny"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
panic = "deny"