diff options
Diffstat (limited to 'bin/bot/Cargo.toml')
| -rw-r--r-- | bin/bot/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bin/bot/Cargo.toml b/bin/bot/Cargo.toml new file mode 100644 index 0000000..708a831 --- /dev/null +++ b/bin/bot/Cargo.toml @@ -0,0 +1,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"]} |
