~repos /tide-jsx

#rust#proc-macro#jsx

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

Tide + JSX


00d5abd1 Gal Schlezinger

6 years ago
v0.2.0
Cargo.lock CHANGED
@@ -64,30 +64,30 @@ dependencies = [
64
64
 
65
65
  [[package]]
66
66
  name = "render"
67
- version = "0.1.1"
67
+ version = "0.2.0"
68
68
  dependencies = [
69
69
  "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
70
70
  "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
71
- "render_macros 0.1.1",
71
+ "render_macros 0.2.0",
72
72
  ]
73
73
 
74
74
  [[package]]
75
75
  name = "render_macros"
76
- version = "0.1.1"
76
+ version = "0.2.0"
77
77
  dependencies = [
78
78
  "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
79
79
  "proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
80
80
  "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
81
- "render 0.1.1",
81
+ "render 0.2.0",
82
82
  "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
83
83
  ]
84
84
 
85
85
  [[package]]
86
86
  name = "render_tests"
87
- version = "0.1.1"
87
+ version = "0.2.0"
88
88
  dependencies = [
89
89
  "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
90
- "render 0.1.1",
90
+ "render 0.2.0",
91
91
  ]
92
92
 
93
93
  [[package]]
render/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "render"
3
- version = "0.1.1"
3
+ version = "0.2.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"
@@ -13,7 +13,7 @@ license = "MIT"
13
13
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
14
14
 
15
15
  [dependencies]
16
- render_macros = { path = "../render_macros", version = "0.1" }
16
+ render_macros = { path = "../render_macros", version = "0.2" }
17
17
  htmlescape = "0.3"
18
18
 
19
19
  [dev-dependencies]
render_macros/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "render_macros"
3
- version = "0.1.1"
3
+ version = "0.2.0"
4
4
  authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
5
5
  edition = "2018"
6
6
  description = "The macros needed for `render`"
@@ -21,5 +21,5 @@ quote = "1.0"
21
21
  proc-macro2 = "1.0"
22
22
 
23
23
  [dev-dependencies]
24
- render = { path = "../render", version = "0.1" }
24
+ render = { path = "../render", version = "0.2" }
25
25
  pretty_assertions = "0.6"
render_tests/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "render_tests"
3
- version = "0.1.1"
3
+ version = "0.2.0"
4
4
  authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
5
5
  edition = "2018"
6
6
  publish = false