Skip to content

Commit

Permalink
feat: suppaftp 5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Jan 28, 2024
1 parent 78aee86 commit d30849d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions suppaftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "suppaftp"
version = "5.3.0"
version = "5.3.1"
authors = [
"Christian Visintin <christian.visintin@veeso.dev>",
"Matt McCoy <mattnenterprise@yahoo.com>",
Expand All @@ -17,7 +17,7 @@ include = [
"../CHANGELOG.md",
]
readme = "../README.md"
license = "Apache-2.0/MIT"
license = "Apache-2.0"
keywords = ["ftp", "ftps", "network-protocol", "async"]
categories = ["asynchronous", "network-programming"]

Expand All @@ -34,18 +34,18 @@ thiserror = "^1"
async-std = { version = "^1.10", optional = true }
async-native-tls-crate = { package = "async-native-tls", version = "^0.5", optional = true }
async-trait = { version = "0.1.64", optional = true }
async-tls = { version = "^0.12", optional = true }
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.21", optional = true }

[dev-dependencies]
async-attributes = "1.1.2"
env_logger = "^0.10"
env_logger = "^0.11"
pretty_assertions = "^1.0.0"
rand = "^0.8.4"
serial_test = "^2.0"
serial_test = "^3.0"
webpki-roots = "0.26"

[features]
Expand Down
8 changes: 4 additions & 4 deletions suppaftp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
//! To get started, first add **suppaftp** to your dependencies:
//!
//! ```toml
//! suppaftp = "^5.2.0"
//! suppaftp = "^5.30"
//! ```
//!
//! ### Features
Expand All @@ -32,9 +32,9 @@
//! If you want to enable **support for FTPS**, you must enable the `native-tls` or `rustls` feature in your cargo dependencies, based on the TLS provider you prefer.
//!
//! ```toml
//! suppaftp = { version = "^5.2.0", features = ["native-tls"] }
//! suppaftp = { version = "^5.30", features = ["native-tls"] }
//! # or
//! suppaftp = { version = "^5.2.0", features = ["rustls"] }
//! suppaftp = { version = "^5.30", features = ["rustls"] }
//! ```
//!
//! > 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
Expand All @@ -44,7 +44,7 @@
//! If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
//!
//! ```toml
//! suppaftp = { version = "^5.2.0", features = ["async"] }
//! suppaftp = { version = "^5.30", features = ["async"] }
//! ```
//!
//! > ⚠️ If you want to enable both **native-tls** and **async** you must use the **async-native-tls** feature ⚠️
Expand Down

0 comments on commit d30849d

Please sign in to comment.