diff --git a/rtc-dtls/Cargo.toml b/rtc-dtls/Cargo.toml index 63e1233..9a8abde 100644 --- a/rtc-dtls/Cargo.toml +++ b/rtc-dtls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtc-dtls" -version = "0.1.1" +version = "0.2.0" authors = ["Rain Liu "] edition = "2021" description = "RTC DTLS in Rust" @@ -12,43 +12,43 @@ repository = "https://github.com/webrtc-rs/rtc" [dependencies] shared = { version = "0.2.0", path = "../rtc-shared", package = "rtc-shared", default-features = false, features = ["crypto", "replay"] } -bytes = "1.4" -byteorder = "1" -rand_core = "0.6" -hkdf = "0.12" -p256 = { version = "0.13", features = ["default", "ecdh", "ecdsa"] } -p384 = "0.13" -rand = "0.8" -hmac = "0.12" -sec1 = { version = "0.7", features = ["std"] } -sha1 = "0.10" -sha2 = "0.10" -aes = "0.8" -cbc = { version = "0.1", features = ["block-padding", "alloc"] } -aes-gcm = "0.10" -ccm = "0.5" -x25519-dalek = { version = "2", features = ["static_secrets"] } -x509-parser = "0.16" -der-parser = "9" -rcgen = "0.12" -ring = "0.17" -rustls = { version = "0.21", features = ["dangerous_configuration"] } -bincode = "1" -serde = { version = "1", features = ["derive"] } -subtle = "2" -log = "0.4" -thiserror = "1" -pem = { version = "3", optional = true } +bytes = "1.5.0" +byteorder = "1.5.0" +rand_core = "0.6.4" +hkdf = "0.12.4" +p256 = { version = "0.13.2", features = ["default", "ecdh", "ecdsa"] } +p384 = "0.13.0" +rand = "0.8.5" +hmac = "0.12.1" +sec1 = { version = "0.7.3", features = ["std"] } +sha1 = "0.10.6" +sha2 = "0.10.8" +aes = "0.8.4" +cbc = { version = "0.1.2", features = ["block-padding", "alloc"] } +aes-gcm = "0.10.3" +ccm = "0.5.0" +x25519-dalek = { version = "2.0.1", features = ["static_secrets"] } +x509-parser = "0.16.0" +der-parser = "9.0.0" +rcgen = "0.12.1" +ring = "0.17.8" +rustls = { version = "0.21.10", features = ["dangerous_configuration"] } +bincode = "1.3.3" +serde = { version = "1.0.197", features = ["derive"] } +subtle = "2.5.0" +log = "0.4.21" +thiserror = "1.0.57" +pem = { version = "3.0.3", optional = true } [dev-dependencies] -local-sync = "0.1" -core_affinity = "0.8" -chrono = "0.4.34" -env_logger = "0.11" -clap = { version = "4", features = ["derive"] } -anyhow = "1" -ctrlc = "3" -futures = "0.3" +local-sync = "0.1.1" +core_affinity = "0.8.1" +chrono = "0.4.35" +env_logger = "0.11.3" +clap = { version = "4.5.2", features = ["derive"] } +anyhow = "1.0.80" +ctrlc = "3.4.4" +futures = "0.3.30" [features] pem = ["dep:pem"]