Skip to content

Commit

Permalink
[FIX] for potential rustls dependency vulnerability (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arend-Jan authored May 22, 2024
1 parent 0b71ca1 commit 62a9caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chat-gpt-lib-rs"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "A Rust library for interacting with OpenAI's ChatGPT API, providing a simple interface to make API requests and handle responses."
license = "Apache-2.0"
Expand All @@ -19,7 +19,7 @@ path = "examples/cli-chat-example.rs"
env_logger = "0.11"
log = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rustls = "0.23"
rustls = ">=0.23.5, <0.24.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.37", features = ["full"] }
Expand Down

0 comments on commit 62a9caa

Please sign in to comment.