Skip to content

Commit

Permalink
Merge pull request #80 from dluschan/master
Browse files Browse the repository at this point in the history
update version epub_builder from 0.5 to 0.7
  • Loading branch information
blandger authored Oct 15, 2023
2 parents 6a64914 + a4a5bfd commit 3b1d377
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ name = "mdbook-epub"
doc = false

[dependencies]
epub-builder = "0.5"
eyre = "0.6"
epub-builder = "0.7"
thiserror = "1.0.43"
pulldown-cmark = "0.9.3"
semver = "1.0.17"
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
//! A `mdbook` backend for generating a book in the `EPUB` format.
use ::epub_builder;
use ::handlebars;
use ::thiserror::Error;
#[macro_use]
Expand Down Expand Up @@ -75,7 +74,7 @@ pub enum Error {
#[error(transparent)]
Semver(#[from] semver::Error),
#[error(transparent)]
EpubBuilder(#[from] epub_builder::Error),
EpubBuilder(#[from] eyre::Report),
#[error(transparent)]
Render(#[from] handlebars::RenderError),
#[error(transparent)]
Expand Down

0 comments on commit 3b1d377

Please sign in to comment.