-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
36 lines (30 loc) · 1010 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "async_ftp"
version = "6.0.0"
authors = ["Daniel García <[email protected]>", "Matt McCoy <[email protected]>"]
documentation = "https://docs.rs/async_ftp/"
repository = "https://github.com/dani-garcia/rust_async_ftp"
description = "FTP client for Rust"
readme = "README.md"
license = "Apache-2.0/MIT"
edition = "2018"
keywords = ["ftp"]
categories = ["network-programming"]
[features]
# default = ["secure"]
# Enable support of FTPS which requires openssl
secure = ["tokio-rustls"]
# Add debug output (to STDOUT) of commands sent to the server
# and lines read from the server
debug_print = []
[dependencies]
lazy_static = "1.4.0"
regex = "1.3.9"
chrono = "0.4.11"
tokio = { version = "1.0.1", features = ["net", "io-util"] }
tokio-rustls = { version = "0.23.0", optional = true }
pin-project = "1.0.0"
[dev-dependencies]
tokio = { version = "1.0.1", features = ["macros", "rt"] }
tokio-util = { version = "0.6.0", features = ["io"] }
tokio-stream = "0.1.0"