multipart3 0.2.0

A fork fork of a backend-agnostic extension for HTTP libraries that provides support for POST multipart/form-data requests on both client and server.
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 = "multipart3"
version = "0.2.0"
authors = ["Daniel Gallups <dan@peacher.app>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fork fork of a backend-agnostic extension for HTTP libraries that provides support for POST multipart/form-data requests on both client and server."
documentation = "http://docs.rs/multipart3/"
readme = "README.md"
keywords = [
    "form-data",
    "http",
    "upload",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PeacherApp/multipart3"

[features]
client = []
default = [
    "client",
    "mock",
    "server",
    "tiny_http",
]
mock = []
server = [
    "buffer-redux",
    "httparse",
    "thiserror",
    "safemem",
    "twoway",
]

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

[[bin]]
name = "read_file"
path = "src/bin/read_file.rs"

[[example]]
name = "tiny_http"
path = "examples/tiny_http.rs"
required-features = [
    "mock",
    "tiny_http",
    "server",
]

[dependencies.buffer-redux]
version = "1.0"
optional = true
default-features = false

[dependencies.httparse]
version = "1.2"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.mime]
version = "0.3.14"

[dependencies.mime_guess]
version = "2.0.5"

[dependencies.rand]
version = "0.9"

[dependencies.safemem]
version = "0.3"
optional = true

[dependencies.tempfile]
version = "3"

[dependencies.thiserror]
version = "2.0"
optional = true

[dependencies.tiny_http]
version = "0.12"
optional = true

[dependencies.twoway]
version = "0.2"
optional = true

[dev-dependencies.env_logger]
version = "0.11"