915cec79
—
Gal Schlezinger 5 years ago
v0.3.1
- Cargo.lock +6 -6
- render/Cargo.toml +2 -2
- render_macros/Cargo.toml +1 -1
- render_tests/Cargo.toml +1 -1
Cargo.lock
CHANGED
|
@@ -59,29 +59,29 @@ dependencies = [
|
|
|
59
59
|
|
|
60
60
|
[[package]]
|
|
61
61
|
name = "render"
|
|
62
|
-
version = "0.3.
|
|
62
|
+
version = "0.3.1"
|
|
63
63
|
dependencies = [
|
|
64
64
|
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
65
|
-
"render_macros 0.3.
|
|
65
|
+
"render_macros 0.3.1",
|
|
66
66
|
]
|
|
67
67
|
|
|
68
68
|
[[package]]
|
|
69
69
|
name = "render_macros"
|
|
70
|
-
version = "0.3.
|
|
70
|
+
version = "0.3.1"
|
|
71
71
|
dependencies = [
|
|
72
72
|
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
73
73
|
"proc-macro2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
74
74
|
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
75
|
-
"render 0.3.
|
|
75
|
+
"render 0.3.1",
|
|
76
76
|
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
77
77
|
]
|
|
78
78
|
|
|
79
79
|
[[package]]
|
|
80
80
|
name = "render_tests"
|
|
81
|
-
version = "0.3.
|
|
81
|
+
version = "0.3.1"
|
|
82
82
|
dependencies = [
|
|
83
83
|
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
84
|
-
"render 0.3.
|
|
84
|
+
"render 0.3.1",
|
|
85
85
|
]
|
|
86
86
|
|
|
87
87
|
[[package]]
|
render/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "render"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
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.3" }
|
|
16
|
+
render_macros = { path = "../render_macros", version = "0.3.1" }
|
|
17
17
|
|
|
18
18
|
[dev-dependencies]
|
|
19
19
|
pretty_assertions = "0.6"
|
render_macros/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "render_macros"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2018"
|
|
6
6
|
description = "The macros needed for `render`"
|
render_tests/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "render_tests"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2018"
|
|
6
6
|
publish = false
|