diff --git a/rtc-srtp/Cargo.toml b/rtc-srtp/Cargo.toml index abfcec5..1388d69 100644 --- a/rtc-srtp/Cargo.toml +++ b/rtc-srtp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtc-srtp" -version = "0.1.1" +version = "0.2.0" authors = ["Rain Liu "] edition = "2021" description = "RTC SRTP in Rust" @@ -14,17 +14,17 @@ shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", de rtp = { version = "0.2.0", path = "../rtc-rtp", package = "rtc-rtp" } rtcp = { version = "0.2.0", path = "../rtc-rtcp", package = "rtc-rtcp" } -byteorder = "1" -bytes = "1" -thiserror = "1" -hmac = { version = "0.12", features = ["std", "reset"] } -sha1 = "0.10" -ctr = "0.9" -aes = "0.8" -subtle = "2" -log = "0.4" -aead = { version = "0.5", features = ["std"] } -aes-gcm = { version = "0.10", features = ["std"] } +byteorder = "1.5.0" +bytes = "1.5.0" +thiserror = "1.0.57" +hmac = { version = "0.12.1", features = ["std", "reset"] } +sha1 = "0.10.6" +ctr = "0.9.2" +aes = "0.8.4" +subtle = "2.5.0" +log = "0.4.21" +aead = { version = "0.5.2", features = ["std"] } +aes-gcm = { version = "0.10.3", features = ["std"] } [dev-dependencies] -lazy_static = "1" +lazy_static = "1.4.0"