-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (51 loc) · 1.5 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
46
47
48
49
50
51
52
53
[package]
name = "rcurl"
version = "0.0.27"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
async-std = "1.13.0"
async-tls = "0.13.0"
bytes = "1.9.0"
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["derive", "string"] }
env_logger = "0.11.6"
form-data-builder = "1.0.1"
futures = "0.3.31"
futures-util = { version = "0.3.31", default-features = false }
http = "1.2.0"
http-body-util = { version = "0.1.2" }
http-range-header = "0.4.2"
hyper = { version = "1.5.2", features = ["full"] }
hyper-rustls = { version = "0.27.5", default-features = false, features = [
"logging",
"ring",
"tls12",
"http1",
"http2",
] }
hyper-util = { version = "0.1.10", features = ["full"] }
indicatif = "0.17.9"
log = "0.4.25"
mime_guess = "2.0.5"
pki-types = { package = "rustls-pki-types", version = "1.10.1" }
rustls = { version = "0.23.21", default-features = false, features = [
"logging",
"ring",
"tls12",
] }
rustls-pemfile = "2.2.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
suppaftp = { version = "6.0.5", features = ["async-rustls", "rustls"] }
tokio = { version = "1.43.0", features = ["full"] }
tokio-rustls = { version = "0.26.1", default-features = false, features = [
"logging",
"ring",
] }
tokio-util = { version = "0.7.13", features = ["full", "time"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.19"
webpki-roots = "0.26.7"