-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (42 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
43 lines (42 loc) · 1.28 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
[package]
name = "yomo"
version = "0.6.1"
edition = "2024"
license = "Apache-2.0"
description = "A QUIC-based runtime for AI-LLM tool routing and serverless execution"
readme = "README.md"
repository = "https://github.com/yomorun/yomo"
homepage = "https://github.com/yomorun/yomo"
documentation = "https://docs.rs/yomo"
keywords = ["ai", "agent", "llm", "serverless", "tool"]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
async-stream = "0.3"
axum = { version = "0.8", features = ["macros"] }
bon = "3"
chrono = "0.4"
clap = { version = "4.5", features = ["derive", "env"] }
config = "0.15"
env_logger = "0.11"
futures-core = "0.3"
futures-util = "0.3"
log = "0.4"
opentelemetry = "0.22"
opentelemetry-otlp = { version = "0.15", features = ["http-proto"] }
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
rustls-native-certs = "0.8"
rustls-pki-types = "1.14"
reqwest = { version = "0.12", features = ["json", "stream"] }
multer = "3"
s2n-quic = { version = "1", features = [
"provider-address-token-default",
"provider-tls-rustls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-opentelemetry = "0.23"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }