fastcgi-connect 0.1.0

Fastcgi client implemented for Rust.
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 = "2021"
name = "fastcgi-connect"
version = "0.1.0"
authors = [
    "jmjoy <jmjoy@apache.org>",
    "rogerio <rogerio.araujo@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fastcgi client implemented for Rust."
readme = "README.md"
keywords = [
    "fastcgi",
    "fcgi",
    "client",
    "tokio",
    "php",
]
license = "Apache-2.0"
repository = "https://github.com/jmjoy/fastcgi-client-rs"

[features]
default = ["tokio"]
smol = ["dep:smol"]
tokio = [
    "tokio/io-util",
    "tokio/sync",
    "tokio/time",
    "tokio-util/io",
]

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

[[test]]
name = "client_get"
path = "tests/client_get.rs"

[[test]]
name = "client_multi"
path = "tests/client_multi.rs"

[[test]]
name = "client_post"
path = "tests/client_post.rs"

[[test]]
name = "common"
path = "tests/common.rs"

[[bench]]
name = "async_client_bench"
path = "benches/async_client_bench.rs"

[[bench]]
name = "common"
path = "benches/common.rs"

[dependencies.bytes]
version = "1.10.1"

[dependencies.futures-core]
version = "0.3.31"
default-features = false

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

[dependencies.smol]
version = "2.0.2"
optional = true
default-features = false

[dependencies.thiserror]
version = "1.0.32"

[dependencies.tokio]
version = "1.20.1"
optional = true
default-features = false

[dependencies.tokio-util]
version = "0.7.15"
optional = true
default-features = false

[dependencies.tracing]
version = "0.1.36"

[dev-dependencies.macro_rules_attribute]
version = "0.2.2"

[dev-dependencies.smol]
version = "2.0.2"

[dev-dependencies.smol-macros]
version = "0.1.1"

[dev-dependencies.smol-timeout]
version = "0.6.1"

[dev-dependencies.tokio]
version = "1.20.1"
features = ["full"]

[dev-dependencies.tracing-subscriber]
version = "0.3.15"