maud/maud/Cargo.toml

29 lines
923 B
TOML
Raw Normal View History

2014-12-17 21:11:56 +13:00
[package]
2014-12-18 19:49:49 +13:00
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
2019-01-17 16:01:55 +13:00
version = "0.20.0"
2014-12-17 21:11:56 +13:00
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
2016-09-24 11:26:28 +12:00
homepage = "https://maud.lambda.xyz/"
2014-12-18 19:49:49 +13:00
repository = "https://github.com/lfairy/maud"
2017-02-17 22:23:44 +13:00
description = "Compile-time HTML templates."
categories = ["template-engine"]
2019-03-16 20:13:16 +13:00
edition = "2018"
[dependencies]
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
2019-01-17 16:01:55 +13:00
maud_macros = { version = "0.20.0", path = "../maud_macros" }
2017-11-07 18:45:06 +02:00
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = ">= 0.3, < 0.5", optional = true }
2018-08-23 09:36:11 +02:00
actix-web = { version = ">= 0.6.12, < 0.8.0", optional = true }
2017-02-17 22:23:44 +13:00
2018-11-05 23:31:36 +00:00
[dev-dependencies]
2019-03-25 20:47:48 +13:00
compiletest_rs = { version = "0.3.19", features = ["stable"] }
2018-11-05 23:31:36 +00:00
2017-02-17 22:23:44 +13:00
[badges]
travis-ci = { repository = "lfairy/maud" }
[package.metadata.docs.rs]
all-features = true