cff578e6
—
Peter John 3 years ago
v0.2.1
- Cargo.toml +3 -3
- impl/Cargo.toml +2 -3
Cargo.toml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "tide-jsx"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.1"
|
|
4
|
-
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
4
|
+
authors = ["pyrossh", "Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2021"
|
|
6
6
|
description = "A safe and simple template engine with the ergonomics of JSX"
|
|
7
7
|
readme = "README.md"
|
|
@@ -11,7 +11,7 @@ categories = ["template-engine"]
|
|
|
11
11
|
license = "MIT"
|
|
12
12
|
|
|
13
13
|
[dependencies]
|
|
14
|
-
tide-jsx-impl = { path = "impl", version = "0.
|
|
14
|
+
tide-jsx-impl = { path = "impl", version = "0.2.0" }
|
|
15
15
|
|
|
16
16
|
[dev-dependencies]
|
|
17
17
|
pretty_assertions = "0.6"
|
impl/Cargo.toml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "tide-jsx-impl"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
|
-
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
4
|
+
authors = ["pyrossh", "Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2021"
|
|
6
6
|
description = "The macros needed for `render`"
|
|
7
7
|
readme = "../README.md"
|
|
@@ -20,5 +20,4 @@ proc-macro2 = "1.0"
|
|
|
20
20
|
proc-macro-error = "1.0"
|
|
21
21
|
|
|
22
22
|
[dev-dependencies]
|
|
23
|
-
#render = { path = "../render", version = "0.3" }
|
|
24
23
|
pretty_assertions = "0.6"
|