diff options
author | Minijackson <minijackson@riseup.net> | 2021-11-28 00:19:12 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2021-11-28 00:21:46 +0100 |
commit | 17b10fab16bc5df3a969826150e92f50e88a99b9 (patch) | |
tree | 12a0c721e89ef17f07a9ede593d82a4c95bc7937 /Cargo.lock | |
parent | 517cabe8ec54d0bf5f5f9cc9089d76a1fad7bb6a (diff) | |
download | pandoc-docbook-17b10fab16bc5df3a969826150e92f50e88a99b9.tar.gz pandoc-docbook-17b10fab16bc5df3a969826150e92f50e88a99b9.zip |
add css and html template, refactor build
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 96 |
1 files changed, 96 insertions, 0 deletions
@@ -186,6 +186,17 @@ dependencies = [ | |||
186 | ] | 186 | ] |
187 | 187 | ||
188 | [[package]] | 188 | [[package]] |
189 | name = "getrandom" | ||
190 | version = "0.2.3" | ||
191 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
192 | checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" | ||
193 | dependencies = [ | ||
194 | "cfg-if", | ||
195 | "libc", | ||
196 | "wasi", | ||
197 | ] | ||
198 | |||
199 | [[package]] | ||
189 | name = "gimli" | 200 | name = "gimli" |
190 | version = "0.26.1" | 201 | version = "0.26.1" |
191 | source = "registry+https://github.com/rust-lang/crates.io-index" | 202 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -390,6 +401,7 @@ dependencies = [ | |||
390 | "pandoc", | 401 | "pandoc", |
391 | "pandoc_ast", | 402 | "pandoc_ast", |
392 | "serde 1.0.130", | 403 | "serde 1.0.130", |
404 | "tempfile", | ||
393 | ] | 405 | ] |
394 | 406 | ||
395 | [[package]] | 407 | [[package]] |
@@ -409,6 +421,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
409 | checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" | 421 | checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" |
410 | 422 | ||
411 | [[package]] | 423 | [[package]] |
424 | name = "ppv-lite86" | ||
425 | version = "0.2.15" | ||
426 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
427 | checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba" | ||
428 | |||
429 | [[package]] | ||
412 | name = "proc-macro-error" | 430 | name = "proc-macro-error" |
413 | version = "1.0.4" | 431 | version = "1.0.4" |
414 | source = "registry+https://github.com/rust-lang/crates.io-index" | 432 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -451,6 +469,55 @@ dependencies = [ | |||
451 | ] | 469 | ] |
452 | 470 | ||
453 | [[package]] | 471 | [[package]] |
472 | name = "rand" | ||
473 | version = "0.8.4" | ||
474 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
475 | checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" | ||
476 | dependencies = [ | ||
477 | "libc", | ||
478 | "rand_chacha", | ||
479 | "rand_core", | ||
480 | "rand_hc", | ||
481 | ] | ||
482 | |||
483 | [[package]] | ||
484 | name = "rand_chacha" | ||
485 | version = "0.3.1" | ||
486 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
487 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" | ||
488 | dependencies = [ | ||
489 | "ppv-lite86", | ||
490 | "rand_core", | ||
491 | ] | ||
492 | |||
493 | [[package]] | ||
494 | name = "rand_core" | ||
495 | version = "0.6.3" | ||
496 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
497 | checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" | ||
498 | dependencies = [ | ||
499 | "getrandom", | ||
500 | ] | ||
501 | |||
502 | [[package]] | ||
503 | name = "rand_hc" | ||
504 | version = "0.3.1" | ||
505 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
506 | checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" | ||
507 | dependencies = [ | ||
508 | "rand_core", | ||
509 | ] | ||
510 | |||
511 | [[package]] | ||
512 | name = "redox_syscall" | ||
513 | version = "0.2.10" | ||
514 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
515 | checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" | ||
516 | dependencies = [ | ||
517 | "bitflags", | ||
518 | ] | ||
519 | |||
520 | [[package]] | ||
454 | name = "regex" | 521 | name = "regex" |
455 | version = "1.5.4" | 522 | version = "1.5.4" |
456 | source = "registry+https://github.com/rust-lang/crates.io-index" | 523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -468,6 +535,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
468 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" | 535 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" |
469 | 536 | ||
470 | [[package]] | 537 | [[package]] |
538 | name = "remove_dir_all" | ||
539 | version = "0.5.3" | ||
540 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
541 | checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" | ||
542 | dependencies = [ | ||
543 | "winapi", | ||
544 | ] | ||
545 | |||
546 | [[package]] | ||
471 | name = "rust-ini" | 547 | name = "rust-ini" |
472 | version = "0.13.0" | 548 | version = "0.13.0" |
473 | source = "registry+https://github.com/rust-lang/crates.io-index" | 549 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -567,6 +643,20 @@ dependencies = [ | |||
567 | ] | 643 | ] |
568 | 644 | ||
569 | [[package]] | 645 | [[package]] |
646 | name = "tempfile" | ||
647 | version = "3.2.0" | ||
648 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
649 | checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" | ||
650 | dependencies = [ | ||
651 | "cfg-if", | ||
652 | "libc", | ||
653 | "rand", | ||
654 | "redox_syscall", | ||
655 | "remove_dir_all", | ||
656 | "winapi", | ||
657 | ] | ||
658 | |||
659 | [[package]] | ||
570 | name = "termcolor" | 660 | name = "termcolor" |
571 | version = "1.1.2" | 661 | version = "1.1.2" |
572 | source = "registry+https://github.com/rust-lang/crates.io-index" | 662 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -689,6 +779,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
689 | checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" | 779 | checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" |
690 | 780 | ||
691 | [[package]] | 781 | [[package]] |
782 | name = "wasi" | ||
783 | version = "0.10.2+wasi-snapshot-preview1" | ||
784 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
785 | checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" | ||
786 | |||
787 | [[package]] | ||
692 | name = "winapi" | 788 | name = "winapi" |
693 | version = "0.3.9" | 789 | version = "0.3.9" |
694 | source = "registry+https://github.com/rust-lang/crates.io-index" | 790 | source = "registry+https://github.com/rust-lang/crates.io-index" |