Skip to content

Commit

Permalink
Release: reduce cargo package size.
Browse files Browse the repository at this point in the history
  • Loading branch information
vldm committed May 17, 2023
1 parent a29a511 commit 4e02a53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[package]
name = "rstml"
description = "Rust templating for XML-based formats (HTML, SVG, MathML) implemented on top of proc-macro::TokenStreams"
version = "0.10.5"
version = "0.10.6"
authors = ["vldm <[email protected]>","stoically <[email protected]>"]
keywords = ["syn", "jsx", "rsx", "html", "macro"]
edition = "2018"
repository = "https://github.com/rs-tml/rstml"
readme = "README.md"
license = "MIT"
resolver = "2"
include = ["/src", "LICENSE"]

[lib]
bench = false
Expand All @@ -29,8 +30,10 @@ eyre = "0.6.8"
[[bench]]
name = "bench"
harness = false
path = "benches/bench.rs"

[workspace]
members = [
"examples/html-to-string-macro"
]

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![codecov](https://codecov.io/gh/rs-tml/rstml/branch/main/graph/badge.svg?token=2LMJ8YEV92)](https://codecov.io/gh/rs-tml/rs-tml)
![build](https://github.com/rs-tml/rstml/workflows/ci/badge.svg)
![license: MIT](https://img.shields.io/crates/l/rstml.svg)
Rust templating for XML-based formats (HTML, SVG, MathML) implemented on top of [`proc-macro::TokenStream`]s.
Rust templating for XML-based formats (HTML, SVG, MathML) implemented on top of `proc-macro::TokenStream`s.
Similar to JSX but for Rust (commonly named RSX).The parsed result is a nested `Node` structure, similar to the browser DOM, where node name and value are syn expressions to support building proc macros.

The fork of original [syn-rsx](https://github.com/stoically/syn-rsx) repo.
Expand Down

0 comments on commit 4e02a53

Please sign in to comment.