-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.06 KB
/
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
42
43
44
45
[package]
name = "wibble"
version = "0.1.0"
edition = "2021"
[dependencies]
sea-orm = { version = "*", features = ["sqlx-mysql", "runtime-tokio", "macros"] }
dotenvy = "0.15.7"
serde = "1"
serde_json = "1"
chrono = "*"
json = "*"
thiserror = "1.0.58"
markdown = "1.0.0-alpha.16"
reqwest = { version = "0.12.3", features = ["json"] }
async-openai = "*"
indoc = "2.0.5"
slugify = "0.1.0"
tracing = "*"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
image = "0.25.1"
axum = "0.7.5"
axum-template = { version = "2.2.0", features = ["tera"] }
tera = "1.19.1"
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
axum-macros = "0.4.1"
tower = "0.4.13"
http = "1.1.0"
sqlx = { version = "0.7.4", features = ["runtime-tokio", "macros", "mysql" ] }
sha2 = "0.10.8"
tokio = { version="*", features = ["full"] }
static_assertions = "1.1.0"
rand = "0.8.5"
bustdir = { version="0.1.1", features = ["tera"] }
regex = "1.10.4"
futures = "0.3.30"
[dependencies.backoff]
version = "0.4.0"
features = ["tokio"]
[dependencies.uuid]
version = "*"
features = ["v4"]