-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 835 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
[package]
name = "samousse-rs"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenvy = "0.15.7"
poise = "0.6.1"
serenity = "0.12.1"
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
twitch_api = { version = "0.7.0-rc.7", features = ["eventsub", "helix", "reqwest", "hmac", "trace_unknown_fields"] }
reqwest = { version = "0.11.27", features = ["json"] }
url = "2.5.0"
serde = "1.0.197"
anyhow = "1.0.81"
tungstenite = "0.21.0"
tokio-tungstenite = "0.21.0"
futures = "0.3.30"
serde_json = "1.0.114"
twitch_oauth2 = "0.12.9"
rand = "0.8.5"
[dev-dependencies]
rpassword = "7.3.1"
[[example]]
name = "auth_flow"
path = "examples/auth_flow.rs"