[package]
edition = "2024"
name = "s3z"
version = "0.1.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "S3 ops, but fearlessly fast!"
readme = "README.md"
keywords = [
"aws",
"cloud",
"multithread",
"s3",
"storage",
]
categories = [
"asynchronous",
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/jaeaeich/s3z"
resolver = "2"
[features]
default = []
tracing = ["dep:tracing"]
[lib]
name = "s3z"
path = "src/lib.rs"
[dependencies.aws-credential-types]
version = "1"
features = ["hardcoded-credentials"]
[dependencies.aws-sigv4]
version = "1"
features = ["sign-http"]
[dependencies.bytes]
version = "1"
[dependencies.futures-util]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.percent-encoding]
version = "2"
[dependencies.quick-xml]
version = "0.39"
features = ["serialize"]
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"stream",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"fs",
"macros",
"rt-multi-thread",
"sync",
]
[dependencies.tokio-util]
version = "0.7"
features = ["io"]
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.walkdir]
version = "2"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
arithmetic_side_effects = "warn"
as_conversions = "warn"
expect_used = "warn"
float_arithmetic = "warn"
multiple_inherent_impl = "warn"
print_stderr = "warn"
print_stdout = "warn"
redundant_pub_crate = "allow"
too_many_arguments = "warn"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "deny"
let_underscore_drop = "deny"
meta_variable_misuse = "deny"
missing_copy_implementations = "deny"
missing_debug_implementations = "deny"
missing_docs = "deny"
non_ascii_idents = "forbid"
single_use_lifetimes = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_pub = "deny"
unsafe_code = "forbid"
unused_crate_dependencies = "deny"
unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_macro_rules = "deny"
unused_qualifications = "deny"
variant_size_differences = "deny"
[lints.rust.keyword_idents]
level = "forbid"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "deny"
priority = -1