-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
52 lines (50 loc) · 1.05 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
[package]
name = "s3rs"
version = "0.4.31"
authors = ["Antonio Yang <[email protected]>"]
description = "A s3 cli client with multi configs with different provider"
keywords = ["S3", "Amazon", "CEPH", "AWS"]
categories = ["command-line-interface"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/yanganto/s3rs"
edition = "2018"
[dependencies]
dirs = "4.0.0"
openssl = { version = "0.10" }
openssl-sys = { version = "0.9" }
interactor = "0.1"
toml = "0.5.9"
serde = "1.0"
serde_derive = "1.0"
hyper = "0.14"
http = "0.2.8"
chrono = "0.4"
hmac = "0.12.1"
sha2 = "0.10.2"
base64 = "0.20.0"
hmac-sha1 = "0.1"
url = "2.1"
log = "0.4"
md5 = "0.7.0"
serde_json = "1.0"
regex = "1.5"
quick-xml = "0.26.0"
colored = "2.0.0"
s3handler = "0.8.1"
clap = { version = "4.4.18", features = ["derive"]}
hex = "0.4.2"
blake2-rfc = "0.2"
rand = "0.8.5"
humansize = "2.0"
tokio = { version = "1", optional = true }
[features]
default = ["async"]
vendored = [
"openssl/vendored",
"openssl-sys/vendored"
]
async = [
"s3handler/tokio-async",
"tokio"
]