-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
72 lines (70 loc) · 2.88 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
65
66
67
68
69
70
71
72
[workspace]
resolver = "2"
members = ["ssstar", "ssstar-cli", "ssstar-testing"]
[workspace.package]
authors = ["Adam Nelson <adam@elastio.com>"]
categories = ["command-line-utilities", "filesystem"]
documentation = "https://github.com/elastio/ssstar"
edition = "2021"
homepage = "https://github.com/elastio/ssstar"
keywords = ["tar", "s3", "archive"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/elastio/ssstar"
version = "0.7.3"
[workspace.dependencies]
again = "0.1.2"
assert_matches = "1.5.0"
async-trait = "0.1"
aws-config = { version = "1.1.1", features = ["behavior-version-latest"] }
aws-credential-types = { version = "1.1.0", features = ["hardcoded-credentials"] }
aws-sdk-s3 = { version = "1.10.0", features = ["rt-tokio"] }
aws-sdk-sts = { version = "1.9.0" }
aws-smithy-async = "1.1.1"
aws-smithy-client = "0.60"
aws-smithy-http = "0.60"
aws-smithy-http-tower = "0.60"
aws-smithy-runtime-api = "1.1.1"
aws-smithy-types = "1.1.1"
aws-smithy-types-convert = { version = "0.60", features = ["convert-chrono"] }
aws-types = { version = "1.1.1", features = [] }
base64 = "0.21.0"
byte-unit = { version = "4" }
bytes = "1.4.0"
chrono = "0.4.22"
clap = { version = "4", features = ["derive"] }
color-eyre = "0.6.2"
digest = "0.10.3"
dirs = "4.0.0"
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
duct = "0.13.5"
dyn-clone = "1.0.9"
futures = "0.3"
glob = "0.3"
http = "0.2"
indicatif = "0.17.3"
itertools = "0.10"
more-asserts = "0.3.1"
once_cell = "1"
rand = "0.8"
regex = "1.7.1"
serde_json = "1"
sha2 = "0.10.6"
snafu = { version = "0.7", features = ["futures"] }
strum = { version = "0.24", features = ["derive"] }
tar = "0.4"
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["io", "io-util"] }
tower = "0.4"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "local-time"] }
tracing-test = "0.2.4"
typenum = "1.15.0"
url = "2.3"
vergen = { version = "8.0", features = ["cargo"]}
walkdir = "2"
which = "4"