skhtml/macros/Cargo.toml

30 lines
680 B
TOML
Raw Normal View History

2018-10-26 21:02:21 +00:00
[package]
name = "typed-html-macros"
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-14 00:30:59 +00:00
build = "build.rs"
2018-11-17 22:07:08 +00:00
license = "MPL-2.0+"
description = "Type checked JSX for Rust (proc_macro crate)"
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"]
2018-10-26 21:02:21 +00:00
[lib]
proc-macro = true
[dependencies]
lalrpop-util = "0.19"
ansi_term = "0.12.0"
2019-10-01 13:44:21 +00:00
proc-macro2 = { version = "1.0.4", features = ["nightly"] }
quote = "1.0.2"
2018-11-14 00:30:59 +00:00
[build-dependencies]
lalrpop = "0.19"
2019-05-28 15:05:56 +00:00
version_check = "0.9.1"
2019-03-16 03:18:49 +00:00
[features]
dodrio = []