~repos /tide-jsx

#rust#proc-macro#jsx

git clone https://pyrossh.dev/repos/tide-jsx.git

Tide + JSX


f995c834 Gal Schlezinger

6 years ago
prepare to publish v0.1
render/Cargo.toml CHANGED
@@ -4,6 +4,11 @@ version = "0.1.0"
4
4
  authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
5
5
  edition = "2018"
6
6
  description = "A safe and simple template engine with the ergonomics of JSX"
7
+ readme = "../README.md"
8
+ repository = "https://github.com/Schniz/render.rs"
9
+ keywords = ["jsx", "rsx", "html", "render", "template"]
10
+ categories = ["template-engine"]
11
+ licesne = "MIT"
7
12
 
8
13
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
14
 
render_macros/Cargo.toml CHANGED
@@ -3,6 +3,12 @@ name = "render_macros"
3
3
  version = "0.1.0"
4
4
  authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
5
5
  edition = "2018"
6
+ description = "The macros needed for `render`"
7
+ readme = "../README.md"
8
+ repository = "https://github.com/Schniz/render.rs"
9
+ keywords = ["macro"]
10
+ categories = []
11
+ licesne = "MIT"
6
12
 
7
13
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
14
 
render_tests/Cargo.toml CHANGED
@@ -4,6 +4,7 @@ version = "0.1.0"
4
4
  authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
5
5
  edition = "2018"
6
6
  publish = false
7
+ repository = "https://github.com/Schniz/render.rs"
7
8
 
8
9
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10