Skip to content

Commit

Permalink
Remove rustls default dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream committed Jul 13, 2024
1 parent 7d060f6 commit 31e7f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jsonwebtoken = { version = "9.3", default-features = false }
# the patch version number is necessary for the 'reqwest' and 'rustls' dependencies to prevent incompatability errors
# (https://github.com/seanmonstar/reqwest/issues/1837)
reqwest = { version = "0.12.5", features = ["cookies", "json", "multipart", "rustls-tls"] }
rustls = "0.23.4"
rustls = { version = "0.23.4", default-features = false, features = ["std", "tls12"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_urlencoded = "0.7"
Expand Down

0 comments on commit 31e7f89

Please sign in to comment.