twitch_api2 0.5.0-alpha.4

Library for talking with the new Twitch API aka. "Helix", TMI and more!
Documentation
[[example]]
name = "automod_check"
path = "examples/automod_check.rs"
required-features = ["twitch_oauth2/surf_client", "surf_client"]

[[example]]
name = "get_channel_status"
path = "examples/get_channel_status.rs"
required-features = ["twitch_oauth2/reqwest_client", "reqwest_client"]

[[example]]
name = "get_hosts"
path = "examples/get_hosts.rs"
required-features = ["surf_client"]

[[example]]
name = "get_moderation"
path = "examples/get_moderation.rs"
required-features = ["twitch_oauth2/surf_client", "surf_client"]

[[example]]
name = "get_streams_and_chatters"
path = "examples/get_streams_and_chatters.rs"
required-features = ["twitch_oauth2/surf_client", "surf_client"]

[[example]]
name = "modify_channel"
path = "examples/modify_channel.rs"
required-features = ["twitch_oauth2/surf_client", "surf_client"]

[[example]]
name = "client"
path = "examples/client.rs"
required-features = ["twitch_oauth2/reqwest_client", "reqwest_client"]

[[example]]
name = "create_follower"
path = "examples/create_follower.rs"
required-features = ["twitch_oauth2/surf_client"]

[[example]]
name = "channel_information"
path = "examples/channel_information.rs"
required-features = ["twitch_oauth2/reqwest_client", "reqwest_client"]
[build-dependencies.version_check]
version = "0.9.2"
[dependencies.async-trait]
optional = true
version = "0.1.42"

[dependencies.displaydoc]
version = "0.1.7"

[dependencies.http]
version = "0.2.3"

[dependencies.http-types]
features = ["hyperium_http"]
optional = true
version = "2.10.0"

[dependencies.reqwest]
optional = true
version = "0.11.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.123"

[dependencies.serde_derive]
version = "1.0.123"

[dependencies.serde_json]
optional = true
version = "1.0.62"

[dependencies.serde_repr]
version = "0.1.6"

[dependencies.surf]
optional = true
version = "2.1.0"

[dependencies.thiserror]
version = "1.0.23"

[dependencies.twitch_oauth2]
optional = true
version = "0.5.0-alpha.3"

[dependencies.typed-builder]
optional = true
version = "0.9.0"

[dependencies.url]
optional = true
version = "2.2.0"
[dev-dependencies.dotenv]
version = "0.15.0"

[dev-dependencies.futures]
version = "0.3.12"

[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1.2.0"

[features]
all = ["tmi", "helix", "surf_client", "reqwest_client", "client", "pubsub", "eventsub"]
allow_unknown_fields = []
client = ["twitch_oauth2"]
default = []
eventsub = ["serde_json"]
helix = ["url", "async-trait", "serde_json", "typed-builder"]
pubsub = ["serde_json"]
reqwest_client = ["reqwest", "client"]
surf_client = ["surf", "url", "http-types", "client"]
tmi = ["serde_json"]
unsupported = []

[package]
authors = ["Emil Gardström <emil.gardstrom@gmail.com>"]
build = "build.rs"
description = "Library for talking with the new Twitch API aka. \"Helix\", TMI and more!"
documentation = "https://docs.rs/twitch_api2/0.4.1"
edition = "2018"
keywords = ["oauth", "twitch", "async", "asynchronous", "api"]
license = "MIT OR Apache-2.0"
name = "twitch_api2"
readme = "README.md"
repository = "https://github.com/Emilgardis/twitch_api2"
version = "0.5.0-alpha.4"
[package.metadata.docs.rs]
features = ["all", "unsupported"]