forked from paolobarbolini/rusty-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 946 Bytes
/
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
[package]
name = "rusty-s3"
version = "0.1.2"
authors = ["Paolo Barbolini <[email protected]>", "Federico Guerinoni <[email protected]>"]
description = "Simple pure Rust AWS S3 Client following a Sans-IO approach"
keywords = ["aws", "s3", "minio"]
repository = "https://github.com/paolobarbolini/rusty-s3"
license = "BSD-2-Clause"
documentation = "https://docs.rs/rusty-s3"
readme = "README.md"
edition = "2018"
[dependencies]
hmac = "0.11"
sha2 = "0.9.2"
time = { version = "0.2.23", default-features = false, features = ["std"] }
url = "2.2.0"
percent-encoding = "2.1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
quick-xml = { version = "0.22", features = ["serialize"] }
[dev-dependencies]
tokio = { version = "1.0.1", features = ["macros", "fs", "rt-multi-thread"] }
reqwest = "0.11"
getrandom = "0.2"
hex = "0.4"
pretty_assertions = "0.7"
criterion = "0.3.3"
[[bench]]
name = "actions"
harness = false