From 407bab104b0f350b0b6797e829ec292d8502c779 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 16 Aug 2017 11:55:25 +0100 Subject: [PATCH] Temporarily use patch for pandoc to fix path --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6a3235..c727ee4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,7 +3,7 @@ name = "md-pdf" version = "0.1.0" dependencies = [ "clap 2.25.0 (registry+https://github.com/rust-lang/crates.io-index)", - "pandoc 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pandoc 0.6.1 (git+https://github.com/RealOrangeOne/rust-pandoc)", "serde 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -90,7 +90,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "pandoc" version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/RealOrangeOne/rust-pandoc#e2fc48d1becea60a9e9d221f1ed3adca00deb437" dependencies = [ "itertools 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -227,7 +227,7 @@ dependencies = [ "checksum linked-hash-map 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd" "checksum linked-hash-map 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7860ec297f7008ff7a1e3382d7f7e1dcd69efc94751a2284bafc3d013c2aa939" "checksum num-traits 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "99843c856d68d8b4313b03a17e33c4bb42ae8f6610ea81b28abe076ac721b9b0" -"checksum pandoc 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1ec974191721f6c720e39e1d3e3d31471638507d08b880ec02f2a3d305887155" +"checksum pandoc 0.6.1 (git+https://github.com/RealOrangeOne/rust-pandoc)" = "" "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" "checksum serde 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "433d7d9f8530d5a939ad5e0e72a6243d2e42a24804f70bf592c679363dcacb2f" "checksum serde_derive 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "7b707cf0d4cab852084f573058def08879bb467fda89d99052485e7d00edd624" diff --git a/Cargo.toml b/Cargo.toml index 25d0d35..d3e7b23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Jake Howard "] [dependencies] clap = "2.25.0" -pandoc = "0.6.1" +pandoc = { git = "https://github.com/RealOrangeOne/rust-pandoc" } serde = "1.0.10" serde_derive = "1.0.10" serde_yaml = "0.7.1"