diff --git a/CHANGELOG.md b/CHANGELOG.md index 61aa4738..939dd487 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Remove generic from `Deepgram` struct. +- Upgrade dependencies: `tungstenite`, `tokio-tungstenite`, `reqwest`. ## [0.3.0] diff --git a/Cargo.toml b/Cargo.toml index 41a1f601..34f964b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deepgram" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" authors = ["Deepgram "] edition = "2021" description = "Official Rust SDK for Deepgram's automated speech recognition APIs." @@ -17,14 +17,14 @@ bytes = "1" futures = "0.3" http = "0.2" pin-project = "1" -reqwest = { version = "0.11.10", default-features = false, features = ["json", "rustls-tls", "stream"] } +reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls", "stream"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "1" tokio = { version = "1", features = ["full"] } -tokio-tungstenite = { version = "0.17", features = ["rustls-tls-webpki-roots"] } +tokio-tungstenite = { version = "0.20.1", features = ["rustls-tls-webpki-roots"] } tokio-util = { version = "0.7.1", features = ["codec", "io"] } -tungstenite = "0.17" +tungstenite = "0.20.1" url = "2" uuid = { version = "1", features = ["serde"] }