Skip to content

Commit

Permalink
bump srtp to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yngrtc committed Mar 11, 2024
1 parent 7e19dce commit 4234501
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions rtc-srtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtc-srtp"
version = "0.1.1"
version = "0.2.0"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "RTC SRTP in Rust"
Expand All @@ -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"

0 comments on commit 4234501

Please sign in to comment.