-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (37 loc) · 1013 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
[package]
name = "gib"
version = "0.1.0"
edition = "2021"
[lib]
name = "gib"
path = "src/lib.rs"
[[bin]]
name = "gib_cli"
path = "src/main.rs"
[dependencies]
thiserror = "1.0.63"
async-openai = "0.24.0"
non-empty-string = { version = "0.2.4", features = ["serde"] }
secrecy = "0.8.0"
url = "2.5.2"
futures = "0.3.30"
nonempty = "0.10.0"
tokio = { version = "1.40.0", features = ["full"] }
async-trait = "0.1.81"
axum = "0.7.5"
jsonwebtoken = { version = "9.3.0", features = ["use_pem"] }
log = "0.4.22"
octocrab = { git = "https://github.com/InAnYan/octocrab", branch = "fix-for-ids" }
smart-default = "0.7.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] }
tower-http = { version = "0.5.2", features = ["trace"] }
serde_json = "1.0.128"
serde = { version = "1.0.210", features = ["derive"] }
config = "0.14.0"
anyhow = "1.0.89"
tera = "1.20.0"
derive_more = { version = "1.0.0", features = ["full"] }
axum-test = "16.1.0"
mockall = "0.13.0"
wiremock = "0.6.2"