blob: 708a8318d1835aded4682273e37fd8ad9665bc09 (
plain)
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
|
[package]
name = "bot"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
config = "0.15.11"
log = "0.4.27"
pretty_env_logger = "0.5.0"
serde = "1.0.219"
tokio = { version = "1.44.2", features = ["rt-multi-thread"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
twilight-cache-inmemory = "0.16.0"
twilight-gateway = "0.16.0"
twilight-http = "0.16.0"
twilight-model = "0.16.0"
bincode = { version = "2.0.1", features = ["serde"] }
db = { path = "../../libs/db" }
deepphonemizer = { git = "https://github.com/MatthieuCoder/deepphonemizer-rs.git" }
async-trait = "0.1.88"
tch = {version = "0.20.0", features = ["download-libtorch"]}
|