webrtc-srtp 0.10.0

A pure Rust implementation of SRTP
Documentation
[package]
name = "webrtc-srtp"
version = "0.10.0"
authors = ["Rain Liu <yliu@webrtc.rs>"]
edition = "2021"
description = "A pure Rust implementation of SRTP"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/webrtc-srtp"
homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/srtp"
rust-version = "1.63.0"

[dependencies]
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = [
    "conn",
    "buffer",
    "marshal",
] }
rtp = { version = "0.8.0", path = "../rtp" }
rtcp = { version = "0.9.0", path = "../rtcp" }

byteorder = "1"
bytes = "1"
thiserror = "1.0"
hmac = { version = "0.12.1", features = ["std", "reset"] }
sha1 = "0.10.5"
ctr = "0.8.0"
aes = "0.7.5"
subtle = "2.4"
tokio = { version = "1.19", features = ["full"] }
log = "0.4.16"
aead = { version = "0.4.3", features = ["std"] }
aes-gcm = { version = "0.10.1", features = ["std"] }

[dev-dependencies]
tokio-test = "0.4.0" # must match the min version of the `tokio` crate above
lazy_static = "1.4.0"