From 26f5360c5a2d0a1e81be86b3860ea80ea0ca9c14 Mon Sep 17 00:00:00 2001 From: yngrtc Date: Sat, 7 Dec 2024 08:43:27 -0800 Subject: [PATCH] bump dtls to v0.11.0 --- Cargo.lock | 2 +- dtls/Cargo.toml | 2 +- webrtc/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e0440c42..9dd7e64f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2841,7 +2841,7 @@ dependencies = [ [[package]] name = "webrtc-dtls" -version = "0.10.0" +version = "0.11.0" dependencies = [ "aes", "aes-gcm", diff --git a/dtls/Cargo.toml b/dtls/Cargo.toml index 0b177e641..410bad9ce 100644 --- a/dtls/Cargo.toml +++ b/dtls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-dtls" -version = "0.10.0" +version = "0.11.0" authors = ["Rain Liu "] edition = "2021" description = "A pure Rust implementation of DTLS" diff --git a/webrtc/Cargo.toml b/webrtc/Cargo.toml index 39b59f0a3..98b5849c9 100644 --- a/webrtc/Cargo.toml +++ b/webrtc/Cargo.toml @@ -12,7 +12,7 @@ readme = "../README.md" [dependencies] data = { version = "0.9.0", path = "../data", package = "webrtc-data" } -dtls = { version = "0.10.0", path = "../dtls", package = "webrtc-dtls" } +dtls = { version = "0.11.0", path = "../dtls", package = "webrtc-dtls" } ice = { version = "0.12.0", path = "../ice", package = "webrtc-ice" } interceptor = { version = "0.12.0", path = "../interceptor" } mdns = { version = "0.8.0", path = "../mdns", package = "webrtc-mdns" }