Skip to content

Commit 2e31c1b

Browse files
Merge #66
66: release v0.5.0-alpha.3 r=Emilgardis a=Emilgardis a bunch of new things Co-authored-by: Emil Gardström <emil.gardstrom@gmail.com>
2 parents 3cf73a2 + 6847f75 commit 2e31c1b

31 files changed

+219
-256
lines changed

Cargo.lock

Lines changed: 211 additions & 220 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "twitch_api2"
3-
version = "0.5.0-alpha.2"
3+
version = "0.5.0-alpha.3"
44
authors = ["Emil Gardström <emil.gardstrom@gmail.com>"]
55
edition = "2018"
66
repository = "https://github.com/Emilgardis/twitch_api2"
@@ -14,16 +14,16 @@ build = "build.rs"
1414
[dependencies]
1515
thiserror = "1.0.23"
1616
displaydoc = "0.1.7"
17-
http = "0.2.2"
17+
http = "0.2.3"
1818
typed-builder = { version = "0.8.0", optional = true }
1919
url = { version = "2.2.0", optional = true }
20-
twitch_oauth2 = { version = "0.5.0-alpha.2", optional = true, path = "twitch_oauth2/" }
21-
serde = { version = "1.0.118", features = ["derive"] }
22-
serde_derive = "1.0.118"
20+
twitch_oauth2 = { version = "0.5.0-alpha.3", optional = true, path = "twitch_oauth2/" }
21+
serde = { version = "1.0.119", features = ["derive"] }
22+
serde_derive = "1.0.119"
2323
async-trait = { version = "0.1.42", optional = true }
2424
serde_json = { version = "1.0.61", optional = true }
2525
serde_repr = "0.1.6"
26-
reqwest = { version = "0.10.10", optional = true }
26+
reqwest = { version = "0.11.0", optional = true }
2727
surf = { version = "2.1.0", optional = true }
2828
http-types = { version = "2.9.0", optional = true, features = ["hyperium_http"] }
2929

@@ -62,7 +62,7 @@ all = ["tmi", "helix", "surf_client", "reqwest_client", "client", "pubsub", "eve
6262
[dev-dependencies]
6363
tokio = { version = "1.0.1", features = ["rt-multi-thread", "macros"] }
6464
dotenv = "0.15.0"
65-
futures = "0.3.8"
65+
futures = "0.3.10"
6666

6767
[build-dependencies]
6868
version_check = "0.9.2"

src/eventsub/channel.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![doc(alias = "channels")]
2-
#![doc(alias = "channel")]
32
//! Subscription types regarding channels
43
use super::{EventSubscription, EventType};
54
use crate::types;

src/eventsub/channel/cheer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "cheer")]
21
#![doc(alias = "channel.cheer")]
32
//! A user cheers on the specified channel.
43
use super::*;

src/eventsub/channel/follow.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "follow")]
21
#![doc(alias = "channel.follow")]
32
//! A specified channel receives a follow.
43
use super::*;

src/eventsub/channel/hypetrain.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "hypetrain")]
21
#![doc(alias = "channel.hype_train")]
32
//! A hype train has started, progressed or ended.
43
use super::{EventSubscription, EventType};

src/eventsub/channel/subscribe.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "subscribe")]
21
#![doc(alias = "subscription")]
32
#![doc(alias = "subscriptions")]
43
#![doc(alias = "channel.subscribe")]

src/eventsub/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "eventsub")]
21
//! Holds serializable EventSub stuff
32
//!
43
//! Use [`CreateEventSubSubscription`](crate::helix::eventsub::CreateEventSubSubscription) to subscribe to an event according to the [EventSub guide](https://dev.twitch.tv/docs/eventsub).

src/eventsub/user.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "user")]
21
//! Subscription types regarding users
32
43
use super::{EventSubscription, EventType};

src/helix/bits.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![doc(alias = "bits")]
21
//! Helix endpoints regarding bits
32
//!
43
//! # Examples

0 commit comments

Comments
 (0)