[package]
name = "trillium-html-rewriter"
version = "0.3.0"
authors = ["Jacob Rothstein "]
edition = "2018"
description = "streaming html rewriter for trillium.rs"
license = "MIT OR Apache-2.0"
repository = "https://github.com/trillium-rs/trillium-html-rewriter"
keywords = ["trillium", "framework", "async"]
categories = ["web-programming::http-server", "web-programming"]
[features]
async-std = ["async_std_crate"]
default = ["async-global-executor"]
smol = ["async-global-executor"]
tokio = ["tokio_crate"]
[dependencies]
async-global-executor = { version = "2.3.1", optional = true }
cfg-if = "1.0.0"
futures-lite = "1.13.0"
lol-async = "0.2.0"
trillium = "0.2.9"
mime = "0.3.17"
[dependencies.tokio_crate]
version = "1.28.0"
optional = true
package = "tokio"
features = ["rt"]
[dependencies.async_std_crate]
version = "1.12.0"
optional = true
package = "async-std"
features = ["unstable"]
[dev-dependencies]
env_logger = "0.10.0"
trillium-proxy = "0.4.0"
trillium-rustls = "0.3.0"
trillium-smol = "0.3.0"
trillium-testing = "0.5.0"