-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (46 loc) · 1 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
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "insomnia-bot"
version = "0.2.0"
authors = ["Evan Chang <evanc577@gmail.com>"]
edition = "2021"
# [profile.release]
# lto = true
[dependencies]
anyhow = "1.0"
futures = "0.3"
if_chain = "1.0"
indextree = "4.6.1"
itertools = "0.11"
markdown = "0.3"
once_cell = "1.18"
poise = "0.5"
pyo3 = "0.20"
regex = "1.10"
serde_json = "1.0"
toml = "0.8"
unicode-segmentation = "1.10"
url = "2.4"
[dependencies.figment]
version = "0.10"
features = ["toml", "env"]
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["rustls-tls"]
[dependencies.songbird]
version = "0.3"
features = ["builtin-queue", "yt-dlp"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1.33"
features = ["macros", "rt-multi-thread", "signal", "time"]
[dependencies.sea-orm]
version = "0.11"
features = ["macros", "sqlx-postgres", "runtime-tokio-rustls"]
[dependencies.time]
version = "0.3"
features = ["macros", "parsing", "formatting"]
[dev-dependencies]
approx = "0.5"