Skip to content

Commit bd3b1ef

Browse files
author
Rain Liu
committed
update deps and upgrade to v0.0.15
1 parent 57043ea commit bd3b1ef

File tree

16 files changed

+20
-20
lines changed

16 files changed

+20
-20
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc"
3-
version = "0.0.14"
3+
version = "0.0.15"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of WebRTC API"
@@ -26,7 +26,7 @@ sctp = { package = "webrtc-sctp", version = "0.3.5" }
2626
data = { package = "webrtc-data", version = "0.2.5" }
2727
media = { package = "webrtc-media", version = "0.1.0" }
2828
interceptor = "0.1.2"
29-
tokio = { version = "1.10.1", features = ["full"] }
29+
tokio = { version = "1.12.0", features = ["full"] }
3030
log = "0.4.14"
3131
async-trait = "0.1.42"
3232
serde = { version = "1.0", features = ["derive"] }
@@ -48,9 +48,9 @@ lazy_static = "1.4"
4848

4949
[dev-dependencies]
5050
tokio-test = "0.4"
51-
env_logger = "0.8"
51+
env_logger = "0.9.0"
5252
clap = "2"
53-
hyper = { version = "0.14", features = ["full"] }
53+
hyper = { version = "0.14.13", features = ["full"] }
5454
signal = {path = "examples/signal" }
5555
tokio-util = "0.6.8"
5656

examples/broadcast/broadcast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
2323
async fn main() -> Result<()> {
2424
let mut app = App::new("broadcast")
2525
.version("0.1.0")
26-
.author("Rain Liu <yuliu@webrtc.rs>")
26+
.author("Rain Liu <yliu@webrtc.rs>")
2727
.about("An example of broadcast.")
2828
.setting(AppSettings::DeriveDisplayOrder)
2929
.setting(AppSettings::SubcommandsNegateReqs)

examples/data-channels-close/data-channels-close.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use webrtc::util::math_rand_alpha;
2121
async fn main() -> Result<()> {
2222
let mut app = App::new("data-channels-close")
2323
.version("0.1.0")
24-
.author("Rain Liu <yuliu@webrtc.rs>")
24+
.author("Rain Liu <yliu@webrtc.rs>")
2525
.about("An example of Data-Channels-Close.")
2626
.setting(AppSettings::DeriveDisplayOrder)
2727
.setting(AppSettings::SubcommandsNegateReqs)

examples/data-channels-create/data-channels-create.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use webrtc::util::math_rand_alpha;
1818
async fn main() -> Result<()> {
1919
let mut app = App::new("data-channels-create")
2020
.version("0.1.0")
21-
.author("Rain Liu <yuliu@webrtc.rs>")
21+
.author("Rain Liu <yliu@webrtc.rs>")
2222
.about("An example of Data-Channels-Create.")
2323
.setting(AppSettings::DeriveDisplayOrder)
2424
.setting(AppSettings::SubcommandsNegateReqs)

examples/data-channels-detach-create/data-channels-detach-create.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const MESSAGE_SIZE: usize = 1500;
2121
async fn main() -> Result<()> {
2222
let mut app = App::new("data-channels-detach-create")
2323
.version("0.1.0")
24-
.author("Rain Liu <yuliu@webrtc.rs>")
24+
.author("Rain Liu <yliu@webrtc.rs>")
2525
.about("An example of Data-Channels-Detach-Create.")
2626
.setting(AppSettings::DeriveDisplayOrder)
2727
.setting(AppSettings::SubcommandsNegateReqs)

examples/data-channels-detach/data-channels-detach.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const MESSAGE_SIZE: usize = 1500;
2222
async fn main() -> Result<()> {
2323
let mut app = App::new("data-channels-detach")
2424
.version("0.1.0")
25-
.author("Rain Liu <yuliu@webrtc.rs>")
25+
.author("Rain Liu <yliu@webrtc.rs>")
2626
.about("An example of Data-Channels-Detach.")
2727
.setting(AppSettings::DeriveDisplayOrder)
2828
.setting(AppSettings::SubcommandsNegateReqs)

examples/data-channels/data-channels.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use webrtc::util::math_rand_alpha;
1919
async fn main() -> Result<()> {
2020
let mut app = App::new("data-channels")
2121
.version("0.1.0")
22-
.author("Rain Liu <yuliu@webrtc.rs>")
22+
.author("Rain Liu <yliu@webrtc.rs>")
2323
.about("An example of Data-Channels.")
2424
.setting(AppSettings::DeriveDisplayOrder)
2525
.setting(AppSettings::SubcommandsNegateReqs)

examples/insertable-streams/insertable-streams.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const CIPHER_KEY: u8 = 0xAA;
2929
async fn main() -> Result<()> {
3030
let mut app = App::new("insertable-streams")
3131
.version("0.1.0")
32-
.author("Rain Liu <yuliu@webrtc.rs>")
32+
.author("Rain Liu <yliu@webrtc.rs>")
3333
.about("An example of insertable-streams.")
3434
.setting(AppSettings::DeriveDisplayOrder)
3535
.setting(AppSettings::SubcommandsNegateReqs)

examples/play-from-disk-renegotiation/play-from-disk-renegotiation.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ async fn remove_video(
226226
async fn main() -> Result<()> {
227227
let mut app = App::new("play-from-disk-renegotiation")
228228
.version("0.1.0")
229-
.author("Rain Liu <yuliu@webrtc.rs>")
229+
.author("Rain Liu <yliu@webrtc.rs>")
230230
.about("An example of play-from-disk-renegotiation.")
231231
.setting(AppSettings::DeriveDisplayOrder)
232232
.setting(AppSettings::SubcommandsNegateReqs)

examples/play-from-disk/play-from-disk.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
2828
async fn main() -> Result<()> {
2929
let mut app = App::new("play-from-disk")
3030
.version("0.1.0")
31-
.author("Rain Liu <yuliu@webrtc.rs>")
31+
.author("Rain Liu <yliu@webrtc.rs>")
3232
.about("An example of play-from-disk.")
3333
.setting(AppSettings::DeriveDisplayOrder)
3434
.setting(AppSettings::SubcommandsNegateReqs)

examples/reflect/reflect.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
2323
async fn main() -> Result<()> {
2424
let mut app = App::new("reflect")
2525
.version("0.1.0")
26-
.author("Rain Liu <yuliu@webrtc.rs>")
26+
.author("Rain Liu <yliu@webrtc.rs>")
2727
.about("An example of how to send back to the user exactly what it receives using the same PeerConnection.")
2828
.setting(AppSettings::DeriveDisplayOrder)
2929
.setting(AppSettings::SubcommandsNegateReqs)

examples/rtp-forwarder/rtp-forwarder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct UdpConn {
3131
async fn main() -> Result<()> {
3232
let mut app = App::new("rtp-forwarder")
3333
.version("0.1.0")
34-
.author("Rain Liu <yuliu@webrtc.rs>")
34+
.author("Rain Liu <yliu@webrtc.rs>")
3535
.about("An example of rtp-forwarder.")
3636
.setting(AppSettings::DeriveDisplayOrder)
3737
.setting(AppSettings::SubcommandsNegateReqs)

examples/rtp-to-webrtc/rtp-to-webrtc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
2121
async fn main() -> Result<()> {
2222
let mut app = App::new("rtp-forwarder")
2323
.version("0.1.0")
24-
.author("Rain Liu <yuliu@webrtc.rs>")
24+
.author("Rain Liu <yliu@webrtc.rs>")
2525
.about("An example of rtp-forwarder.")
2626
.setting(AppSettings::DeriveDisplayOrder)
2727
.setting(AppSettings::SubcommandsNegateReqs)

examples/save-to-disk/save-to-disk.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async fn save_to_disk(
5959
async fn main() -> Result<()> {
6060
let mut app = App::new("save-to-disk")
6161
.version("0.1.0")
62-
.author("Rain Liu <yuliu@webrtc.rs>")
62+
.author("Rain Liu <yliu@webrtc.rs>")
6363
.about("An example of save-to-disk.")
6464
.setting(AppSettings::DeriveDisplayOrder)
6565
.setting(AppSettings::SubcommandsNegateReqs)

examples/signal/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
tokio = { version = "1.10.1", features = ["full"] }
9+
tokio = { version = "1.12.0", features = ["full"] }
1010
anyhow = "1.0.44"
1111
base64 = "0.13.0"
1212
lazy_static = "1.4"
13-
hyper = { version = "0.14", features = ["full"] }
13+
hyper = { version = "0.14.13", features = ["full"] }

examples/simulcast/simulcast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
2626
async fn main() -> Result<()> {
2727
let mut app = App::new("simulcast")
2828
.version("0.1.0")
29-
.author("Rain Liu <yuliu@webrtc.rs>")
29+
.author("Rain Liu <yliu@webrtc.rs>")
3030
.about("An example of simulcast.")
3131
.setting(AppSettings::DeriveDisplayOrder)
3232
.setting(AppSettings::SubcommandsNegateReqs)

0 commit comments

Comments
 (0)