skhtml/macros/Cargo.toml

27 lines
671 B
TOML
Raw Normal View History

2018-10-26 21:02:21 +00:00
[package]
name = "typed-html-macros"
2018-11-29 17:52:08 +00:00
version = "0.1.1"
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]
2018-11-14 00:30:59 +00:00
lalrpop-util = "0.16.1"
ansi_term = "0.11.0"
2018-11-18 06:43:11 +00:00
proc-macro2 = { version = "0.4.24", features = ["nightly"] }
proc-macro-hack = "0.5.2"
2018-11-18 06:43:11 +00:00
quote = "0.6.10"
2018-11-14 00:30:59 +00:00
[build-dependencies]
lalrpop = "0.16.1"
2018-11-18 08:06:17 +00:00
version_check = "0.1.5"