71a726cb
—
Gal Schlezinger 6 years ago
bump version for updating docs
- Cargo.lock +6 -6
- render/Cargo.toml +1 -1
- render_macros/Cargo.toml +1 -1
- render_tests/Cargo.toml +1 -1
Cargo.lock
CHANGED
|
@@ -64,30 +64,30 @@ dependencies = [
|
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "render"
|
|
67
|
-
version = "0.1.
|
|
67
|
+
version = "0.1.1"
|
|
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.
|
|
71
|
+
"render_macros 0.1.1",
|
|
72
72
|
]
|
|
73
73
|
|
|
74
74
|
[[package]]
|
|
75
75
|
name = "render_macros"
|
|
76
|
-
version = "0.1.
|
|
76
|
+
version = "0.1.1"
|
|
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.
|
|
81
|
+
"render 0.1.1",
|
|
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.
|
|
87
|
+
version = "0.1.1"
|
|
88
88
|
dependencies = [
|
|
89
89
|
"pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
90
|
-
"render 0.1.
|
|
90
|
+
"render 0.1.1",
|
|
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.
|
|
3
|
+
version = "0.1.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"
|
render_macros/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "render_macros"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.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.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
|
|
5
5
|
edition = "2018"
|
|
6
6
|
publish = false
|