skhtml/typed-html/Cargo.toml

22 lines
583 B
TOML
Raw Normal View History

2018-10-26 21:02:21 +00:00
[package]
2022-12-15 21:24:41 +00:00
name = "axohtml"
2023-03-29 19:44:03 +00:00
version = "0.5.0"
2022-12-15 23:13:48 +00:00
edition = "2021"
authors = ["Axo Developer Co <hello@axo.dev>", "Bodil Stokke <bodil@bodil.org>"]
2018-11-17 22:07:08 +00:00
license = "MPL-2.0+"
description = "Type checked JSX for Rust"
2022-12-15 21:24:41 +00:00
repository = "https://github.com/axodotdev/axohtml"
documentation = "http://docs.rs/axohtml/"
2018-11-17 22:07:08 +00:00
readme = "../README.md"
2022-12-15 21:24:41 +00:00
categories = ["template-engine", "web-programming"]
keywords = ["jsx", "html"]
2018-10-26 21:02:21 +00:00
[dependencies]
2022-12-15 21:24:41 +00:00
axohtml-macros = { path = "../macros" }
2023-03-29 17:01:49 +00:00
strum = "0.24"
strum_macros = "0.24"
2023-03-29 17:06:19 +00:00
mime = "0.3.17"
language-tags = "0.3"
2018-11-14 18:25:05 +00:00
htmlescape = "0.3.1"
2023-03-29 17:06:19 +00:00
proc-macro-nested = "0.1.7"