-
Notifications
You must be signed in to change notification settings - Fork 57
/
Cargo.toml
39 lines (32 loc) · 860 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
37
38
39
[package]
name = "ftp"
version = "3.0.1"
authors = ["Matt McCoy <[email protected]>"]
documentation = "https://docs.rs/ftp/"
repository = "https://github.com/mattnenterprise/rust-ftp"
description = "FTP client for Rust"
readme = "README.md"
license = "Apache-2.0/MIT"
keywords = ["ftp"]
categories = ["network-programming"]
[badges]
travis-ci = { repository = "mattnenterprise/rust-ftp" }
[lib]
name ="ftp"
path = "src/lib.rs"
[features]
# Enable support of FTPS which requires openssl
secure = ["openssl"]
# Add debug output (to STDOUT) of commands sent to the server
# and lines read from the server
debug_print = []
[dependencies]
lazy_static = "1"
regex = "1"
chrono = "0.4"
openssl = { version = "0.10", optional = true }
[dependencies.native-tls]
version = "0.2"
optional = true
[package.metadata.docs.rs]
rustc-args = ["--cfg", "secure"]