-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
54 lines (48 loc) · 1.47 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
[package]
name = "rusty-s3"
version = "0.6.0"
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"]
categories = ["aws", "s3", "minio"]
repository = "https://github.com/paolobarbolini/rusty-s3"
license = "BSD-2-Clause"
documentation = "https://docs.rs/rusty-s3"
readme = "README.md"
edition = "2021"
rust-version = "1.71"
[dependencies]
hmac = "0.12.1"
sha2 = "0.10"
time = { version = "0.3", default-features = false, features = ["macros", "formatting"] }
url = "2.2.0"
percent-encoding = "2.1.0"
zeroize = "1"
# optional
base64 = { version = "0.22", optional = true }
quick-xml = { version = "0.37", features = ["serialize"], optional = true }
md-5 = { version = "0.10", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
[features]
default = ["full"]
wasm_bindgen = ["time/wasm-bindgen"]
full = ["dep:base64", "dep:quick-xml", "dep:md-5", "dep:serde", "dep:serde_json", "time/parsing"]
[dev-dependencies]
tokio = { version = "1.0.1", features = ["macros", "fs", "rt-multi-thread"] }
reqwest = "0.12"
getrandom = "0.2"
hex = "0.4"
pretty_assertions = "1"
criterion = "0.5"
[[bench]]
name = "actions"
harness = false
[lints.clippy]
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"