http-ferry 0.2.0

Resumable, checksum-verified streaming byte transfer from HTTP sources to pluggable sinks
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "http-ferry"
version = "0.2.0"
authors = ["Mark Cooper <gh.aftermath967@passinbox.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Resumable, checksum-verified streaming byte transfer from HTTP sources to pluggable sinks"
readme = "README.md"
keywords = [
    "download",
    "http",
    "resume",
    "s3",
    "streaming",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mark-cooper/archive-it-client"
resolver = "2"

[features]
s3 = ["dep:aws-sdk-s3"]

[lib]
name = "http_ferry"
path = "src/lib.rs"

[[example]]
name = "local_download"
path = "examples/local_download.rs"

[dependencies.async-stream]
version = "0.3"

[dependencies.aws-sdk-s3]
version = "1"
features = [
    "behavior-version-latest",
    "rt-tokio",
]
optional = true
default-features = false

[dependencies.futures-core]
version = "0.3"

[dependencies.futures-util]
version = "0.3"
default-features = false

[dependencies.md-5]
version = "0.11"

[dependencies.reqwest]
version = "0.12"
features = [
    "rustls-tls",
    "stream",
]
default-features = false

[dependencies.sha1]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "fs",
    "io-util",
    "time",
]
default-features = false

[dependencies.url]
version = "2"

[dev-dependencies.aws-config]
version = "1"

[dev-dependencies.aws-credential-types]
version = "1"

[dev-dependencies.aws-smithy-http-client]
version = "1"
features = ["test-util"]

[dev-dependencies.aws-smithy-types]
version = "1"

[dev-dependencies.http]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]