# 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 = "async-fcgi" version = "0.5.0" authors = ["User65k <15049544+User65k@users.noreply.github.com>"] description = "FastCGI library" readme = "README.md" keywords = [ "fastcgi", "fcgi", "protocol", "cgi", "tokio", ] license = "AGPL-3.0" repository = "https://github.com/User65k/async-fcgi" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [[example]] name = "webserver" path = "examples/webserver.rs" required-features = [ "con_pool", "tokio/rt", ] [[example]] name = "start_fcgi_server_from_client" path = "examples/start_fcgi_server_from_client.rs" required-features = [ "app_start", "tokio/rt", ] [dependencies.async-stream-connection] version = "1.0" optional = true [dependencies.bytes] version = "1" [dependencies.http] version = "1.0" [dependencies.http-body] version = "1.0" optional = true [dependencies.httparse] version = "1" optional = true [dependencies.log] version = "0.4" [dependencies.slab] version = "0.4" optional = true [dependencies.tokio] version = "1" optional = true [dependencies.tokio-util] version = "0.7" optional = true [dev-dependencies.hyper] version = "1.2" features = [ "http1", "server", ] [dev-dependencies.hyper-util] version = "0.1.3" features = [ "http1", "server", "tokio", ] [dev-dependencies.pretty_env_logger] version = "0.5" default-features = false [dev-dependencies.tokio] version = "1" features = [ "rt", "macros", ] [features] app_start = [ "con_pool", "tokio/process", ] codec = ["tokio/io-util"] con_pool = ["web_server"] default = [] web_server = [ "slab", "http-body", "httparse", "tokio/net", "tokio/io-util", "tokio/sync", "codec", "tokio/macros", "async-stream-connection", ]