You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -113,7 +113,7 @@ SuppaFTP is the main FTP/FTPS client library for Rust, with both support for syn
113
113
To get started, first add **suppaftp** to your dependencies:
114
114
115
115
```toml
116
-
suppaftp = "^4.5.0"
116
+
suppaftp = "^4.6.0"
117
117
```
118
118
119
119
### Features
@@ -123,9 +123,9 @@ suppaftp = "^4.5.0"
123
123
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.
124
124
125
125
```toml
126
-
suppaftp = { version = "^4.5.0", features = ["native-tls"] }
126
+
suppaftp = { version = "^4.6.0", features = ["native-tls"] }
127
127
# or
128
-
suppaftp = { version = "^4.5.0", features = ["rustls"] }
128
+
suppaftp = { version = "^4.6.0", features = ["rustls"] }
129
129
```
130
130
131
131
> 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
@@ -136,7 +136,7 @@ suppaftp = { version = "^4.5.0", features = ["rustls"] }
136
136
If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
137
137
138
138
```toml
139
-
suppaftp = { version = "^4.5.0", features = ["async"] }
139
+
suppaftp = { version = "^4.6.0", features = ["async"] }
140
140
```
141
141
142
142
> ⚠️ If you want to enable both **native-tls** and **async** you must use the **async-native-tls** feature ⚠️
Copy file name to clipboardExpand all lines: suppaftp/src/lib.rs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
//! To get started, first add **suppaftp** to your dependencies:
22
22
//!
23
23
//! ```toml
24
-
//! suppaftp = "^4.5.0"
24
+
//! suppaftp = "^4.6.0"
25
25
//! ```
26
26
//!
27
27
//! ### Features
@@ -31,9 +31,9 @@
31
31
//! 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.
32
32
//!
33
33
//! ```toml
34
-
//! suppaftp = { version = "^4.5.0", features = ["native-tls"] }
34
+
//! suppaftp = { version = "^4.6.0", features = ["native-tls"] }
35
35
//! # or
36
-
//! suppaftp = { version = "^4.5.0", features = ["rustls"] }
36
+
//! suppaftp = { version = "^4.6.0", features = ["rustls"] }
37
37
//! ```
38
38
//!
39
39
//! > 💡 If you don't know what to choose, `native-tls` should be preferred for compatibility reasons.
@@ -43,7 +43,7 @@
43
43
//! If you want to enable **async** support, you must enable `async` feature in your cargo dependencies.
44
44
//!
45
45
//! ```toml
46
-
//! suppaftp = { version = "^4.5.0", features = ["async"] }
46
+
//! suppaftp = { version = "^4.6.0", features = ["async"] }
47
47
//! ```
48
48
//!
49
49
//! > ⚠️ If you want to enable both **native-tls** and **async** you must use the **async-native-tls** feature ⚠️
0 commit comments