Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats committed Mar 4, 2022
1 parent 88e0624 commit 2feda3e
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 38 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ also specify classes on headers now
- Fix markup for fenced code with linenos
- Make `ignored_content` work with nested paths and directories
- `zola serve/build` can now run from anywhere in a zola directory
- Add XML support to `load_data`

## 0.15.3 (2022-01-23)

Expand Down
55 changes: 24 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions components/libs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ relative-path = "1"
glob = "0.3"


[dev-dependencies]
mockito = "0.30"


[features]
rust-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/default-tls"]
Expand Down
2 changes: 1 addition & 1 deletion components/link_checker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ utils = { path = "../utils" }
libs = { path = "../libs" }

[dev-dependencies]
mockito = "0.30"
mockito = "0.31"
2 changes: 1 addition & 1 deletion components/rendering/src/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ pub fn markdown_to_html(
inserted_anchors.push(heading_ref.id.clone().unwrap());
let id = inserted_anchors.last().unwrap();

let html = heading_ref.to_html(&id);
let html = heading_ref.to_html(id);
events[start_idx] = Event::Html(html.into());

// generate anchors and places to insert them
Expand Down
2 changes: 1 addition & 1 deletion components/templates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ libs = { path = "../libs" }


[dev-dependencies]
mockito = "0.30"
mockito = "0.31"
tempfile = "3"

0 comments on commit 2feda3e

Please sign in to comment.