Skip to content

Commit

Permalink
chore: upgrade dependencies to address CVEs
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhalle committed Nov 1, 2023
1 parent df682c8 commit 78529fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deepgram"
version = "0.4.0-alpha.1"
version = "0.4.0-alpha.2"
authors = ["Deepgram <[email protected]>"]
edition = "2021"
description = "Official Rust SDK for Deepgram's automated speech recognition APIs."
Expand All @@ -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"] }

Expand Down

0 comments on commit 78529fe

Please sign in to comment.