skhtml/typed-html/Cargo.toml

38 lines
996 B
TOML
Raw Normal View History

2018-10-26 21:02:21 +00:00
[package]
name = "typed-html"
2020-02-07 17:36:14 +00:00
version = "0.2.2"
2019-03-15 23:06:20 +00:00
edition = "2018"
2018-10-26 21:02:21 +00:00
authors = ["Bodil Stokke <bodil@bodil.org>"]
2018-11-17 22:07:08 +00:00
license = "MPL-2.0+"
description = "Type checked JSX for Rust"
repository = "https://github.com/bodil/typed-html"
documentation = "http://docs.rs/typed-html/"
readme = "../README.md"
categories = ["template-engine", "wasm", "web-programming"]
keywords = ["jsx", "html", "wasm"]
[badges]
travis-ci = { repository = "bodil/typed-html" }
2020-02-07 17:36:14 +00:00
maintenance = { status = "looking-for-maintainer" }
[package.metadata.docs.rs]
all-features = true
2018-10-26 21:02:21 +00:00
[dependencies]
typed-html-macros = { path = "../macros" }
strum = "0.23"
strum_macros = "0.23"
2019-03-15 14:05:05 +00:00
mime = "0.3.13"
language-tags = "0.3"
2018-11-14 18:25:05 +00:00
htmlescape = "0.3.1"
2019-03-15 14:05:05 +00:00
proc-macro-nested = "0.1.3"
stdweb = { version = "0.4.14", optional = true }
dodrio = { version = "0.2.0", optional = true }
2020-02-07 17:36:14 +00:00
web-sys = { version = "0.3.16", optional = true, features = [
"Event",
"Element"
] }
2019-03-16 03:18:49 +00:00
[features]
dodrio_macro = ["web-sys", "dodrio", "typed-html-macros/dodrio"]