-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
64 lines (59 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "aim"
version = "1.8.5"
edition = "2021"
authors = ["Mihai Galos <[email protected]>"]
description = "🎯 A command line download/upload tool with resume."
categories = [
"HTTP client",
"command-line-utilities",
"network-programming",
"web-programming::http-client"
]
keywords = [
"cli",
"download",
"resume",
"upload"
]
repository = "https://github.com/mihaigalos/aim"
license = "MIT"
[dependencies]
async-ssh2-lite = { version = "0.5.0", features = ["tokio"] }
async-std = "1.12.0"
async-stream = "0.3.5"
async_ftp = "6.0.0"
autoclap = "0.3.15"
clap = { version = "4.5.4", features = ["cargo", "string"] }
crossbeam-utils = "0.8.19"
custom_error = "1.9.2"
dotenvy = "0.15.7"
futures = "0.3.30"
futures-util = "0.3.30"
http = "0.2.12"
indicatif = "0.17.8"
lazy_static = "1.4.0"
log = "0.4.21"
melt = "0.1.6"
native-tls = "0.2.11"
netrc = "0.4.1"
openssl = { version = "0.10.64", features = ["vendored"] }
question = "0.2.2"
regex = "1.10.4"
reqwest = { version = "0.12.0", features = ["stream"] }
rust-s3 = { version = "0.35.0", features = ["blocking", "with-tokio"] }
self_update = { version = "0.41.0", features = ["archive-tar", "compression-flate2"] }
sha2 = "0.10.8"
skim-navi = "0.1.10"
ssh2 = "0.9.4"
strfmt = "0.2.4"
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = {version="0.7.11", features = ["full"]}
untildify = "0.1.1"
url-parse = "1.0.7"
uuid = { version = "1.8", features = ["v4"] }
warpy = "0.3.54"
[dev-dependencies]
serial_test = "2.0.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }