24 lines
937 B
TOML
24 lines
937 B
TOML
[package]
|
|
name = "rust-twitch-avatar-cache"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dotenvy = "0.15.7"
|
|
redis = "0.25.3"
|
|
redis-derive = "0.1.7"
|
|
reqwest = "0.12.4"
|
|
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
# found in https://github.com/twitch-rs/twitch_api/issues/405
|
|
twitch_api = { git = "https://github.com/twitch-rs/twitch_api/", features = ["client", "helix", "reqwest", "twitch_oauth2"] }
|
|
twitch_oauth2 = { git = "https://github.com/twitch-rs/twitch_api/", features = ["reqwest", "client"] }
|
|
twitch_types = { git = "https://github.com/twitch-rs/twitch_api/" }
|
|
|
|
# workaround for https://github.com/twitch-rs/twitch_api/issues/256
|
|
[patch.crates-io.twitch_types]
|
|
git = "https://github.com/twitch-rs/twitch_api"
|
|
[patch.crates-io.twitch_oauth2]
|
|
git = "https://github.com/twitch-rs/twitch_api"
|