forked from kuviman/kuvibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 940 Bytes
/
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
[workspace]
resolver = "2"
members = ["twitch-bot"]
[package]
name = "kuvibot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twitch-bot = { path = "twitch-bot" }
async-channel = "2.2.0"
clap = { version = "4.5.4", features = ["derive"] }
dirs = "5.0.1"
env_logger = "0.11.3"
eyre = "0.6.12"
futures = "0.3.30"
hyper = { version = "0.14", features = ["full"] }
log = "0.4.21"
once_cell = "1.19.0"
open = "5.1.2"
rand = "0.8.5"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
tmi = "0.5.0"
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time", "macros"] }
toml = "0.8.12"
twitch_api = { version = "0.7.0-rc.7", features = ["all", "reqwest"] }
twitch_oauth2 = { version = "0.12.9", features = ["all"] }
url = "2.5.0"
websocket-lite = "0.5.2"