From b7372d3bf2e2090ec41d22305dca7dfe8ee41c80 Mon Sep 17 00:00:00 2001 From: steveklabnik Date: Tue, 29 Aug 2017 10:53:20 -0400 Subject: [PATCH] Fix toml problem and release 0.0.23 The toml crate removed its serde dependency in 0.3, but in 0.4, it went away. Cargo didn't warn on this, but now it does. As such, we need a release so that rust's build doesn't warn constantly. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9387d76a..a90b1922 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook" -version = "0.0.22-pre" +version = "0.0.23" authors = ["Mathieu David "] description = "create books from markdown files (like Gitbook)" documentation = "http://azerupi.github.io/mdBook/index.html" @@ -25,7 +25,7 @@ pulldown-cmark = "0.0.14" lazy_static = "0.2" log = "0.3" env_logger = "0.4.0" -toml = { version = "0.4", features = ["serde"] } +toml = "0.4" open = "1.1" regex = "0.2.1" tempdir = "0.3.4"