Temporarily use patch for pandoc to fix path
This commit is contained in:
parent
75baa35d4c
commit
407bab104b
2 changed files with 4 additions and 4 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -3,7 +3,7 @@ name = "md-pdf"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 2.25.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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 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_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)",
|
"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]]
|
[[package]]
|
||||||
name = "pandoc"
|
name = "pandoc"
|
||||||
version = "0.6.1"
|
version = "0.6.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "git+https://github.com/RealOrangeOne/rust-pandoc#e2fc48d1becea60a9e9d221f1ed3adca00deb437"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itertools 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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.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 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 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)" = "<none>"
|
||||||
"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
|
"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 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"
|
"checksum serde_derive 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "7b707cf0d4cab852084f573058def08879bb467fda89d99052485e7d00edd624"
|
||||||
|
|
|
@ -5,7 +5,7 @@ authors = ["Jake Howard <git@theorangeone.net>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = "2.25.0"
|
clap = "2.25.0"
|
||||||
pandoc = "0.6.1"
|
pandoc = { git = "https://github.com/RealOrangeOne/rust-pandoc" }
|
||||||
serde = "1.0.10"
|
serde = "1.0.10"
|
||||||
serde_derive = "1.0.10"
|
serde_derive = "1.0.10"
|
||||||
serde_yaml = "0.7.1"
|
serde_yaml = "0.7.1"
|
||||||
|
|
Reference in a new issue