forked from Ali-Gatorre/python-maker-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 726 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 726 Bytes
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
[package]
name = "python-maker-bot"
version = "0.4.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
dotenvy = "0.15"
chrono = "0.4"
rand = "0.8"
uuid = { version = "1", features = ["v4"] }
regex = "1.10"
colored = "2.1"
toml = "0.8"
dirs = "5.0"
wait-timeout = "0.2"
rustyline = { version = "15", features = ["derive"] }
# Web dashboard
axum = { version = "0.7", features = ["ws"] }
askama = { version = "0.12", features = ["serde-json"] }
askama_axum = "0.4"
futures = "0.3"
[dev-dependencies]
mockito = "1.5"