Skip to content

Commit b7372d3

Browse files
committed
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.
1 parent a1926bb commit b7372d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook"
3-
version = "0.0.22-pre"
3+
version = "0.0.23"
44
authors = ["Mathieu David <[email protected]>"]
55
description = "create books from markdown files (like Gitbook)"
66
documentation = "http://azerupi.github.io/mdBook/index.html"
@@ -25,7 +25,7 @@ pulldown-cmark = "0.0.14"
2525
lazy_static = "0.2"
2626
log = "0.3"
2727
env_logger = "0.4.0"
28-
toml = { version = "0.4", features = ["serde"] }
28+
toml = "0.4"
2929
open = "1.1"
3030
regex = "0.2.1"
3131
tempdir = "0.3.4"

0 commit comments

Comments
 (0)