-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rust version with thread-based worker (#540)
- Loading branch information
Showing
57 changed files
with
1,941 additions
and
1,179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[workspace] | ||
members = [ | ||
"rust" | ||
"rust", | ||
"worker" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mediasoup" | ||
version = "0.6.0" | ||
version = "0.7.1" | ||
description = "Cutting Edge WebRTC Video Conferencing in Rust" | ||
categories = ["api-bindings", "multimedia", "network-programming"] | ||
authors = ["Nazar Mokrynskyi <[email protected]>"] | ||
|
@@ -11,51 +11,57 @@ documentation = "https://docs.rs/mediasoup" | |
repository = "https://github.com/versatica/mediasoup/tree/v3/rust" | ||
readme = "readme.md" | ||
|
||
[package.metadata.docs.rs] | ||
default-target = "x86_64-unknown-linux-gnu" | ||
targets = [] | ||
|
||
[dependencies] | ||
async-channel = "1.5.1" | ||
async-channel = "1.6.1" | ||
async-executor = "1.4.0" | ||
async-fs = "1.5.0" | ||
async-io = "1.3.1" | ||
async-lock = "2.3.0" | ||
async-oneshot = "0.4.2" | ||
async-process = "1.0.1" | ||
async-trait = "0.1.42" | ||
bytes = "1.0.0" | ||
async-oneshot = "0.5.0" | ||
async-trait = "0.1.48" | ||
bytes = "1.0.1" | ||
event-listener-primitives = "0.2.2" | ||
fastrand = "1.4.0" | ||
futures-lite = "1.11.3" | ||
h264-profile-level-id = "0.1.1" | ||
log = "0.4.11" | ||
libc = "0.2.82" | ||
nix = "0.19.1" | ||
once_cell = "1.5.2" | ||
serde_json = "1.0.61" | ||
log = "0.4.14" | ||
libc = "0.2.90" | ||
once_cell = "1.7.2" | ||
serde_json = "1.0.64" | ||
serde_repr = "0.1.6" | ||
thiserror = "1.0.23" | ||
thiserror = "1.0.24" | ||
|
||
[dependencies.lru] | ||
default-features = false | ||
version = "0.6.5" | ||
|
||
[dependencies.mediasoup-sys] | ||
path = "../worker" | ||
version = "0.1.1" | ||
|
||
[dependencies.parking_lot] | ||
version = "0.11.1" | ||
features = ["serde"] | ||
|
||
[dependencies.regex] | ||
default-features = false | ||
features = ["std", "perf"] | ||
version = "1.4.2" | ||
version = "1.4.5" | ||
|
||
[dependencies.serde] | ||
features = ["derive"] | ||
version = "1.0.118" | ||
version = "1.0.124" | ||
|
||
[dependencies.uuid] | ||
features = ["serde", "v4"] | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
|
||
[dev-dependencies] | ||
actix = "0.10.0" | ||
actix-web = "3.3.2" | ||
actix-web-actors = "3.0.0" | ||
env_logger = "0.8.2" | ||
env_logger = "0.8.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Changelog | ||
|
||
### 0.7.0 | ||
|
||
* Switch from running C++ worker processes to worker threads using mediasoup-sys that wraps mediasoup-worker into library | ||
* Simplify `WorkerManager::new()` and `WorkerManager::with_executor()` API as the result of above | ||
* Support `rtxPacketsDiscarded` in `Producer` stats | ||
* Enable Rust 2018 idioms warnings | ||
* Make sure all public types have `Debug` implementation on them | ||
* Enforce docs on public types and add missing documentation | ||
* Remove `RtpCodecParametersParameters::new()` (`RtpCodecParametersParameters::default()` does the same thing) | ||
|
||
### 0.6.0 | ||
|
||
Initial upstreamed release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.