skhtml/typed-html/Cargo.toml

33 lines
966 B
TOML
Raw Normal View History

2018-10-26 21:02:21 +00:00
[package]
name = "typed-html"
2018-11-29 17:52:08 +00:00
version = "0.1.1"
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" }
maintenance = { status = "actively-developed" }
2018-10-26 21:02:21 +00:00
[dependencies]
2018-11-30 13:44:37 +00:00
typed-html-macros = { path = "../macros" }
strum = "0.14.0"
2019-03-15 14:05:05 +00:00
strum_macros = "0.14.0"
mime = "0.3.13"
2018-10-27 23:48:34 +00:00
language-tags = "0.2.2"
2018-11-14 18:25:05 +00:00
htmlescape = "0.3.1"
2019-03-15 14:05:05 +00:00
proc-macro-hack = "0.5.4"
proc-macro-nested = "0.1.3"
stdweb = { version = "0.4.14", optional = true }
2019-03-16 03:18:49 +00:00
dodrio = { version = "0.1.0", optional = true }
web-sys = { version = "0.3.16", optional = true, features = ["Event", "Element"] }
[features]
dodrio_macro = ["web-sys", "dodrio", "typed-html-macros/dodrio"]