-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
41 lines (39 loc) · 963 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
38
39
40
41
[package]
name = "llamakey"
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
axum = { version = "0.7", features = ["http2"] }
axum-auth = "0.7"
comfy-table = "7.1.0"
dotenvy = "0.15.7"
hyper = { version = "1.1", features = ["http1", "http2"] }
hyper-rustls = { version = "0.26", features = [
"http1",
"http2",
"rustls-native-certs",
] }
hyper-util = { version = "0.1", features = [
"client",
"http1",
"http2",
"tokio",
] }
indoc = "2.0.4"
log = "0.4"
pretty_env_logger = "0.5"
rustls = "0.22"
rustls-native-certs = "0.7"
serde = { version = "1", features = ["derive"] }
serde_urlencoded = "0.7"
strum = { version = "0.26.1", features = ["derive"] }
tokio = { version = "1", features = [
"sync",
"parking_lot",
"macros",
"time",
"rt-multi-thread",
] }
tower-http = { version = "0.5", features = ["compression-full", "limit"] }