Skip to content

Commit

Permalink
Resolve dependencies conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
KmolYuan committed Sep 22, 2022
1 parent a1846e2 commit 9fe28b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "reveal-yaml"
description = "A YAML project manager serving Reveal.js slides."
version = "1.1.2"
version = "1.1.3"
authors = ["KmolYuan <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -19,7 +19,7 @@ actix-web = "4"
actix-files = "0.6"
actix-web-actors = "4"
pulldown-cmark = "0.9"
webbrowser = "0.7"
binstall-zip = "0.6"
webbrowser = "0.8"
reqwest = "0.11"
temp-dir = "0.1"
zip = "0.6"
2 changes: 1 addition & 1 deletion src/pack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{
io::Result,
path::{Path, PathBuf},
};
use zip::ZipArchive;
use binstall_zip::ZipArchive;

fn copy_dir<P, D>(path: P, dist: D) -> Result<()>
where
Expand Down
2 changes: 1 addition & 1 deletion src/update.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::io::{Cursor, Result};
use zip::{ZipArchive, ZipWriter};
use binstall_zip::{ZipArchive, ZipWriter};

macro_rules! archive {
() => {
Expand Down

0 comments on commit 9fe28b3

Please sign in to comment.