Skip to content

Commit

Permalink
fix(deps): force rustls to use ring
Browse files Browse the repository at this point in the history
#94

fix #94
  • Loading branch information
veeso committed Nov 27, 2024
1 parent 8fdb1cb commit 390c68c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

- [Changelog](#changelog)
- [6.0.5](#605)
- [6.0.4](#604)
- [6.0.3](#603)
- [6.0.2](#602)
Expand Down Expand Up @@ -37,6 +38,12 @@

---

## 6.0.5

Released on 27/11/2024

- [Force rustls to use ring](https://github.com/veeso/suppaftp/issues/94)

## 6.0.4

Released on 26/10/2024
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["suppaftp", "suppaftp-cli"]
resolver = "2"

[workspace.package]
version = "6.0.4"
version = "6.0.5"
edition = "2021"
authors = [
"Christian Visintin <christian.visintin@veeso.dev>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</p>

<p align="center">Developed by <a href="https://veeso.github.io/">veeso</a> and <a href="https://github.com/mattnenterprise">Matt McCoy</a></p>
<p align="center">Current version: 6.0.3 (15/10/2024)</p>
<p align="center">Current version: 6.0.5 (27/11/2024)</p>

<p align="center">
<a href="https://opensource.org/licenses/MIT"
Expand Down
9 changes: 7 additions & 2 deletions suppaftp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ path = "src/lib.rs"
chrono = { version = "^0.4", default-features = false, features = ["clock"] }
lazy-regex = "^3"
log = "^0.4"
thiserror = "^1"
thiserror = "^2"
# async
async-std = { version = "^1.10", optional = true }
async-native-tls-crate = { package = "async-native-tls", version = "^0.5", optional = true }
Expand All @@ -36,7 +36,12 @@ async-tls = { version = "^0.13", optional = true }
pin-project = { version = "^1", optional = true }
# secure
native-tls-crate = { package = "native-tls", version = "^0.2", optional = true }
rustls-crate = { package = "rustls", version = "^0.23", optional = true }
rustls-crate = { package = "rustls", version = "^0.23", default-features = false, features = [
"logging",
"ring",
"std",
"tls12",
], optional = true }
futures-lite = "2.0.0"

[dev-dependencies]
Expand Down

1 comment on commit 390c68c

@simonsan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! 🙏

Please sign in to comment.