-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 843 Bytes
/
Cargo.toml
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
[package]
name = "genai-gateway"
version = "0.1.0"
edition = "2021"
[profile.release]
lto = true
codegen-units = 1
[dependencies]
async-trait = "0.1"
pingora = { version = "0.3.0", features = ["lb"] }
pingora-error = "0.3.0"
bytes = "1.7.1"
pingora-http = "0.3.0"
anyhow = "1.0.86"
prometheus = "0.13.4"
pingora-core = "0.3.0"
serde = { version = "1.0.206", features = ["derive"] }
serde_json = "1.0.124"
serde_yaml = "0.8.26"
tiktoken-rs = "0.5.9"
env_logger = "0.11.5"
log = "0.4.22"
clap = { version = "4.5.15", features = ["derive", "env"] }
redis = { version = "0.26.1", features = ["async-std-comp"] }
time = "0.3.36"
rand = "0.7.3"
deadpool = {version = "0.12.1", features = ["rt_async-std_1"]}
[dev-dependencies]
matchers = "0.2.0"
reqwest = "0.12.5"
tokio = "1.39.2"
httpmock = "0.7.0"
testcontainers = "0.21.1"
mockall = "0.13.0"