-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (53 loc) · 1.73 KB
/
Cargo.toml
File metadata and controls
60 lines (53 loc) · 1.73 KB
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
[package]
name = "rusty-s3"
version = "0.9.1"
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 = ["web-programming", "api-bindings"]
repository = "https://github.com/paolobarbolini/rusty-s3"
license = "BSD-2-Clause"
documentation = "https://docs.rs/rusty-s3"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
[dependencies]
hmac = "0.13"
jiff = { version = "0.2", default-features = false, features = ["std"] }
percent-encoding = "2.1.0"
sha2 = "0.11"
url = "2.2.0"
zeroize = "1"
# optional
base64 = { version = "0.22", optional = true }
instant-xml = { version = "0.7", optional = true }
md-5 = { version = "0.11", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
[features]
default = ["full"]
wasm_bindgen = ["jiff/js"]
full = ["dep:base64", "dep:instant-xml", "dep:md-5", "dep:serde", "dep:serde_json", "jiff/serde"]
[dev-dependencies]
tokio = { version = "1.0.1", features = ["macros", "fs", "rt-multi-thread"] }
reqwest = "0.13"
getrandom = "0.4"
hex = "0.4"
pretty_assertions = "1"
criterion = "0.7"
[[bench]]
name = "actions"
harness = false
[lints.rust]
unreachable_pub = "warn"
[lints.clippy]
complexity = { level = "warn", priority = -1 }
correctness = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
unused_trait_names = "warn"
redundant_pub_crate = "allow"
ref_patterns = "warn"