vovk-rust 0.0.1-draft.31 → 0.0.1-draft.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/template/README.md.ejs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <%= t.package.name.replace(/-/g, '_') %> v<%= t.package.version %> 
|
|
1
|
+
# <%= t.package.name.replace(/-/g, '_') %> v<%= t.package.version %>  [](https://vovk.dev)
|
|
2
2
|
|
|
3
3
|
<%- t.package.description ? `> ${t.package.description}` : '' %>
|
|
4
4
|
|
|
@@ -161,7 +161,7 @@ where
|
|
|
161
161
|
if let Some(ref params_val) = params_value {
|
|
162
162
|
if let Value::Object(map) = params_val {
|
|
163
163
|
for (key, value) in map {
|
|
164
|
-
let pattern = format!("
|
|
164
|
+
let pattern = format!("{{{}}}", key);
|
|
165
165
|
if let Value::String(s) = value {
|
|
166
166
|
url = url.replace(&pattern, s);
|
|
167
167
|
} else {
|