-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (41 loc) · 1.18 KB
/
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
40
41
42
43
44
45
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "remotefs FTP client library"
documentation = "https://docs.rs/remotefs-ftp"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["remotefs", "ftp-client"]
license = "MIT"
name = "remotefs-ftp"
readme = "README.md"
repository = "https://github.com/remotefs-rs/remotefs-rs-ftp"
version = "0.2.2"
[dependencies]
log = "^0.4"
remotefs = "^0.3"
suppaftp = "^6"
rustls-pki-types = { version = "1", optional = true }
webpki-roots = { version = "0.26", optional = true }
[dev-dependencies]
env_logger = "^0.11"
pretty_assertions = "^1.0.0"
rand = "^0.8.4"
serial_test = "^3"
tempfile = "^3"
[features]
default = ["find"]
# TLS
native-tls = ["suppaftp/native-tls"]
rustls = ["suppaftp/rustls", "dep:rustls-pki-types", "dep:webpki-roots"]
secure = ["native-tls"]
vendored = ["suppaftp/native-tls-vendored"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
# tests
github-actions = []
with-containers = ["native-tls"]
[target."cfg(target_os = \"windows\")"]
[target."cfg(target_os = \"windows\")".dependencies]
path-slash = "^0.1.4"