maud/maud/Cargo.toml
Chris Wong 434af86ae7
Remove Iron support ()
The Iron framework hasn't been updated in a long time. It still uses outdated versions of libraries like futures 0.1, hyper 0.12, url 1.7. We can clean up the repo by removing it. This will also slightly speed up CI.
2021-11-06 11:44:10 +00:00

32 lines
1.1 KiB
TOML

[package]
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.22.3"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
homepage = "https://maud.lambda.xyz/"
repository = "https://github.com/lambda-fairy/maud"
description = "Compile-time HTML templates."
categories = ["template-engine"]
edition = "2021"
[features]
default = []
# Web framework integrations
actix-web = ["actix-web-dep", "futures-util"]
[dependencies]
maud_macros = { version = "0.22.3", path = "../maud_macros" }
rocket = { version = ">= 0.3, < 0.5", optional = true }
futures-util = { version = "0.3.0", optional = true, default-features = false }
actix-web-dep = { package = "actix-web", version = ">= 2, < 4", optional = true, default-features = false }
tide = { version = "0.16.0", optional = true, default-features = false }
axum = { version = "0.2", optional = true }
[dev-dependencies]
trybuild = { version = "1.0.33", features = ["diff"] }
[package.metadata.docs.rs]
all-features = true