28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
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]
|
|
axum = "0.7.5"
|
|
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"] }
|
|
tower-http = { version = "0.5.2", features = ["cors"] }
|
|
|
|
# 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/" }
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
http = "1.1.0"
|
|
|
|
# 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"
|