diff --git a/Cargo.lock b/Cargo.lock index 22982d492..29f4db279 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2962,7 +2962,7 @@ dependencies = [ [[package]] name = "webrtc-srtp" -version = "0.13.0" +version = "0.14.0" dependencies = [ "aead", "aes", diff --git a/interceptor/Cargo.toml b/interceptor/Cargo.toml index 1d24a6b4a..cdfe48467 100644 --- a/interceptor/Cargo.toml +++ b/interceptor/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/webrtc-rs/webrtc/tree/master/interceptor" util = { version = "0.10.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] } rtp = { version = "0.12.0", path = "../rtp" } rtcp = { version = "0.12.0", path = "../rtcp" } -srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" } +srtp = { version = "0.14.0", path = "../srtp", package = "webrtc-srtp" } tokio = { version = "1.32.0", features = ["sync", "time"] } async-trait = "0.1" diff --git a/srtp/Cargo.toml b/srtp/Cargo.toml index 9aa64cb66..830f8be86 100644 --- a/srtp/Cargo.toml +++ b/srtp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-srtp" -version = "0.13.0" +version = "0.14.0" authors = ["Rain Liu "] edition = "2021" description = "A pure Rust implementation of SRTP" diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index 278bb0e4b..7941358a0 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -21,7 +21,7 @@ rtcp = { version = "0.12.0", path = "../rtcp" } rtp = { version = "0.12.0", path = "../rtp" } sctp = { version = "0.10.0", path = "../sctp", package = "webrtc-sctp" } sdp = { version = "0.7.0", path = "../sdp" } -srtp = { version = "0.13.0", path = "../srtp", package = "webrtc-srtp" } +srtp = { version = "0.14.0", path = "../srtp", package = "webrtc-srtp" } stun = { version = "0.7.0", path = "../stun" } turn = { version = "0.9.0", path = "../turn" } util = { version = "0.10.0", path = "../util", package = "webrtc-util" }