-
-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into documentation
- Loading branch information
Showing
40 changed files
with
509 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ members = [ | |
"util", | ||
"webrtc", | ||
] | ||
resolver = "2" | ||
|
||
[profile.dev] | ||
opt-level = 0 |
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,27 +1,24 @@ | ||
[package] | ||
name = "webrtc-data" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["Rain Liu <[email protected]>"] | ||
edition = "2021" | ||
description = "A pure Rust implementation of WebRTC DataChannel API" | ||
license = "MIT OR Apache-2.0" | ||
documentation = "https://docs.rs/webrtc-data" | ||
homepage = "https://webrtc.rs" | ||
repository = "https://github.com/webrtc-rs/data" | ||
rust-version = "1.63.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] } | ||
sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" } | ||
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] } | ||
sctp = { version = "0.9", path = "../sctp", package = "webrtc-sctp" } | ||
|
||
tokio = { version = "1.19", features = ["full"] } | ||
tokio = { version = "1.32.0", features = ["full"] } | ||
bytes = "1" | ||
log = "0.4.16" | ||
thiserror = "1.0" | ||
log = "0.4" | ||
thiserror = "1" | ||
|
||
[dev-dependencies] | ||
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above | ||
env_logger = "0.9.0" | ||
chrono = "0.4.23" | ||
tokio-test = "0.4" # must match the min version of the `tokio` crate above | ||
env_logger = "0.10" | ||
chrono = "0.4.28" |
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,55 +1,51 @@ | ||
[package] | ||
name = "webrtc-dtls" | ||
version = "0.7.2" | ||
version = "0.8.0" | ||
authors = ["Rain Liu <[email protected]>"] | ||
edition = "2021" | ||
description = "A pure Rust implementation of DTLS" | ||
license = "MIT OR Apache-2.0" | ||
documentation = "https://docs.rs/webrtc-dtls" | ||
homepage = "https://webrtc.rs" | ||
repository = "https://github.com/webrtc-rs/dtls" | ||
rust-version = "1.63.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } | ||
util = { version = "0.8", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] } | ||
|
||
byteorder = "1" | ||
rand_core = "0.6.3" | ||
hkdf = "~0.12.1" | ||
p256 = { version = "0.11.1", features = ["default", "ecdh", "ecdsa"] } | ||
p384 = "0.11.2" | ||
rand = "0.8.5" | ||
hmac = "0.12.1" | ||
sec1 = { version = "0.3.0", features = [ "std" ] } | ||
sha1 = "0.10.5" | ||
sha2 = "0.10.6" | ||
aes = "0.6.0" | ||
block-modes = "0.7.0" | ||
aes-gcm = "0.10.1" | ||
ccm = "0.3.0" | ||
tokio = { version = "1.19", features = ["full"] } | ||
async-trait = "0.1.56" | ||
rand_core = "0.6" | ||
hkdf = "0.12" | ||
p256 = { version = "0.13", features = ["default", "ecdh", "ecdsa"] } | ||
p384 = "0.13" | ||
rand = "0.8" | ||
hmac = "0.12" | ||
sec1 = { version = "0.7", features = [ "std" ] } | ||
sha1 = "0.10" | ||
sha2 = "0.10" | ||
aes = "0.8" | ||
cbc = { version = "0.1", features = [ "block-padding", "alloc"] } | ||
aes-gcm = "0.10" | ||
ccm = "0.5" | ||
tokio = { version = "1.32.0", features = ["full"] } | ||
async-trait = "0.1" | ||
x25519-dalek = { version = "2", features = ["static_secrets"] } | ||
x509-parser = "0.13.2" | ||
x509-parser = "0.15" | ||
der-parser = "8.1" | ||
rcgen = "0.10.0" | ||
rcgen = "0.11" | ||
ring = "0.16.19" | ||
webpki = "0.21.4" | ||
rustls = { version = "0.19.0", features = ["dangerous_configuration"]} | ||
bincode = "1.3" | ||
serde = { version = "1.0.110", features = ["derive"] } | ||
subtle = "2.4" | ||
log = "0.4.16" | ||
thiserror = "1.0" | ||
pem = { version = "1", optional = true } | ||
rustls = { version = "0.21", features = ["dangerous_configuration"]} | ||
bincode = "1" | ||
serde = { version = "1", features = ["derive"] } | ||
subtle = "2" | ||
log = "0.4" | ||
thiserror = "1" | ||
pem = { version = "3", optional = true } | ||
|
||
[dev-dependencies] | ||
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above | ||
env_logger = "0.9.0" | ||
chrono = "0.4.23" | ||
clap = "3.2.6" | ||
tokio-test = "0.4" | ||
env_logger = "0.10" | ||
chrono = "0.4.28" | ||
clap = "3" | ||
hub = {path = "examples/hub"} | ||
|
||
[features] | ||
|
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
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.