Skip to content

Commit

Permalink
update deps and upgrade to v0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Rain Liu committed Sep 25, 2021
1 parent 57043ea commit bd3b1ef
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc"
version = "0.0.14"
version = "0.0.15"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2018"
description = "A pure Rust implementation of WebRTC API"
Expand All @@ -26,7 +26,7 @@ sctp = { package = "webrtc-sctp", version = "0.3.5" }
data = { package = "webrtc-data", version = "0.2.5" }
media = { package = "webrtc-media", version = "0.1.0" }
interceptor = "0.1.2"
tokio = { version = "1.10.1", features = ["full"] }
tokio = { version = "1.12.0", features = ["full"] }
log = "0.4.14"
async-trait = "0.1.42"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -48,9 +48,9 @@ lazy_static = "1.4"

[dev-dependencies]
tokio-test = "0.4"
env_logger = "0.8"
env_logger = "0.9.0"
clap = "2"
hyper = { version = "0.14", features = ["full"] }
hyper = { version = "0.14.13", features = ["full"] }
signal = {path = "examples/signal" }
tokio-util = "0.6.8"

Expand Down
2 changes: 1 addition & 1 deletion examples/broadcast/broadcast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
async fn main() -> Result<()> {
let mut app = App::new("broadcast")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of broadcast.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/data-channels-close/data-channels-close.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use webrtc::util::math_rand_alpha;
async fn main() -> Result<()> {
let mut app = App::new("data-channels-close")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of Data-Channels-Close.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/data-channels-create/data-channels-create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use webrtc::util::math_rand_alpha;
async fn main() -> Result<()> {
let mut app = App::new("data-channels-create")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of Data-Channels-Create.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const MESSAGE_SIZE: usize = 1500;
async fn main() -> Result<()> {
let mut app = App::new("data-channels-detach-create")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of Data-Channels-Detach-Create.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/data-channels-detach/data-channels-detach.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const MESSAGE_SIZE: usize = 1500;
async fn main() -> Result<()> {
let mut app = App::new("data-channels-detach")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of Data-Channels-Detach.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/data-channels/data-channels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use webrtc::util::math_rand_alpha;
async fn main() -> Result<()> {
let mut app = App::new("data-channels")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of Data-Channels.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/insertable-streams/insertable-streams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CIPHER_KEY: u8 = 0xAA;
async fn main() -> Result<()> {
let mut app = App::new("insertable-streams")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of insertable-streams.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async fn remove_video(
async fn main() -> Result<()> {
let mut app = App::new("play-from-disk-renegotiation")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of play-from-disk-renegotiation.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/play-from-disk/play-from-disk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
async fn main() -> Result<()> {
let mut app = App::new("play-from-disk")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of play-from-disk.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/reflect/reflect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
async fn main() -> Result<()> {
let mut app = App::new("reflect")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of how to send back to the user exactly what it receives using the same PeerConnection.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/rtp-forwarder/rtp-forwarder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct UdpConn {
async fn main() -> Result<()> {
let mut app = App::new("rtp-forwarder")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of rtp-forwarder.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/rtp-to-webrtc/rtp-to-webrtc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
async fn main() -> Result<()> {
let mut app = App::new("rtp-forwarder")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of rtp-forwarder.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
2 changes: 1 addition & 1 deletion examples/save-to-disk/save-to-disk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async fn save_to_disk(
async fn main() -> Result<()> {
let mut app = App::new("save-to-disk")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of save-to-disk.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down
4 changes: 2 additions & 2 deletions examples/signal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.10.1", features = ["full"] }
tokio = { version = "1.12.0", features = ["full"] }
anyhow = "1.0.44"
base64 = "0.13.0"
lazy_static = "1.4"
hyper = { version = "0.14", features = ["full"] }
hyper = { version = "0.14.13", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/simulcast/simulcast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use webrtc::peer::sdp::session_description::RTCSessionDescription;
async fn main() -> Result<()> {
let mut app = App::new("simulcast")
.version("0.1.0")
.author("Rain Liu <yuliu@webrtc.rs>")
.author("Rain Liu <yliu@webrtc.rs>")
.about("An example of simulcast.")
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandsNegateReqs)
Expand Down

0 comments on commit bd3b1ef

Please sign in to comment.