-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (36 loc) · 1.23 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
[package]
name = "s3-algo"
description = "High-performance algorithms for batch operations to Amazon S3"
version = "0.7.0"
authors = ["Erlend Langseth <[email protected]>"]
license = "MIT"
edition = "2018"
documentation = "https://docs.rs/s3-algo/"
repository = "https://github.com/openanalytics/s3-algo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.17"
futures-stopwatch = "0.3.0"
futures-retry = "0.6.0"
tokio = {version = "1.10", features = ["time", "fs", "macros", "io-util", "sync", "rt-multi-thread"]}
tokio-util = {version = "0.7.0", features = ["codec"]}
bytes = "1.2.1"
serde = {optional = true, version = "1.0.130", features = ["derive"]}
snafu = {version = "0.6.1", features = ["futures"]}
walkdir = "2.2.9"
aws-sdk-s3 = "1.14.0"
aws-config = "1.1.4"
aws-smithy-http = "0.60.4"
aws-smithy-async = "1.1.4"
aws-smithy-types-convert = {version = "0.60.4", features = ["convert-streams"]}
[target.'cfg(windows)'.dependencies]
# only needed on windows for substituting \ with / in paths
path-slash = "0.2.1"
[dev-dependencies]
tempdir = "0.3.7"
multi-default-trait-impl = "0.1.2"
rand = "0.8.5"
clap = "3.0.0"
[features]
default = ["serde1"]
serde1 = ["serde"]