summaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)AuthorFilesLines
2021-08-07chore: update crate version number and dependencies, for releaseLars Wirzenius1-23/+30
Update git-testament to depend on current version.
2021-07-11release: Subplot version 0.2.1Lars Wirzenius1-37/+39
Sponsored-by: author
2021-06-12chore: update top level version to 0.2.0Daniel Silverstone1-1/+1
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-06-12chore: update Cargo.tomls for releaseDaniel Silverstone1-3/+4
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-06-12chore: Cargo UpdateDaniel Silverstone1-100/+91
Updating aho-corasick v0.7.15 -> v0.7.18 Updating anyhow v1.0.38 -> v1.0.41 Updating bstr v0.2.15 -> v0.2.16 Updating byteorder v1.4.2 -> v1.4.3 Updating cc v1.0.66 -> v1.0.68 Removing const_fn v0.4.5 Updating crossbeam-channel v0.5.0 -> v0.5.1 Updating crossbeam-epoch v0.9.1 -> v0.9.5 Updating crossbeam-utils v0.8.1 -> v0.8.5 Updating dtoa v0.4.7 -> v0.4.8 Updating generic-array v0.12.3 -> v0.12.4 Updating getrandom v0.2.2 -> v0.2.3 Updating git-testament v0.1.9 -> v0.1.10 Updating git-testament-derive v0.1.10 -> v0.1.12 Updating globset v0.4.6 -> v0.4.7 Updating heck v0.3.2 -> v0.3.3 Updating humansize v1.1.0 -> v1.1.1 Updating ignore v0.4.17 -> v0.4.18 Updating libc v0.2.86 -> v0.2.97 Updating memchr v2.3.4 -> v2.4.0 Updating memoffset v0.6.1 -> v0.6.4 Updating once_cell v1.5.2 -> v1.7.2 Updating pandoc v0.8.3 -> v0.8.4 Updating pikchr v0.1.0 -> v0.1.1 Updating proc-macro2 v1.0.24 -> v1.0.27 Updating rand_chacha v0.3.0 -> v0.3.1 Updating rand_core v0.6.1 -> v0.6.2 Updating rayon v1.5.0 -> v1.5.1 Updating rayon-core v1.9.0 -> v1.9.1 Updating redox_syscall v0.2.4 -> v0.2.8 Updating regex v1.4.3 -> v1.5.4 Updating regex-syntax v0.6.22 -> v0.6.25 Updating serde v1.0.123 -> v1.0.126 Updating serde-aux v2.1.1 -> v2.2.0 Updating serde_derive v1.0.123 -> v1.0.126 Updating serde_json v1.0.62 -> v1.0.64 Updating syn v1.0.60 -> v1.0.73 Updating tera v1.6.1 -> v1.10.0 Updating thiserror v1.0.23 -> v1.0.25 Updating thiserror-impl v1.0.23 -> v1.0.25 Updating typenum v1.12.0 -> v1.13.0 Updating unicode-xid v0.2.1 -> v0.2.2 Updating version_check v0.9.2 -> v0.9.3 Updating walkdir v2.3.1 -> v2.3.2 Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-05-01pandoc_ast: Support multiple versions of pandoc_astDaniel Silverstone1-1/+13
In order to cope with multiple versions of Pandoc, we need to support various pandoc_ast versions. This patch introduces support for both 0.8 and 0.7, defaulting to the older 0.7. If you use Subplot on a system with a much newer pandoc, then switch to the 0.8 variant to cope. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-04-23version: Add support for git-testament derived version infoDaniel Silverstone1-0/+23
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-02-13Cargo.lock: Run `cargo update`Daniel Silverstone1-76/+78
Updating anyhow v1.0.37 -> v1.0.38 Updating bstr v0.2.14 -> v0.2.15 Updating byteorder v1.3.4 -> v1.4.2 Removing cfg-if v0.1.10 Updating filetime v0.2.13 -> v0.2.14 Updating getrandom v0.2.0 -> v0.2.2 Updating hermit-abi v0.1.17 -> v0.1.18 Updating libc v0.2.81 -> v0.2.86 Updating linked-hash-map v0.5.3 -> v0.5.4 Updating log v0.4.11 -> v0.4.14 Adding once_cell v1.5.2 Updating pandoc v0.8.1 -> v0.8.3 Updating quote v1.0.8 -> v1.0.9 Updating rand v0.8.0 -> v0.8.3 Updating rand_core v0.6.0 -> v0.6.1 Updating redox_syscall v0.1.57 -> v0.2.4 Updating regex v1.4.2 -> v1.4.3 Updating regex-syntax v0.6.21 -> v0.6.22 Updating serde v1.0.118 -> v1.0.123 Updating serde_derive v1.0.118 -> v1.0.123 Updating serde_json v1.0.61 -> v1.0.62 Updating serde_yaml v0.8.14 -> v0.8.17 Updating syn v1.0.57 -> v1.0.60 Updating tempfile v3.1.0 -> v3.2.0 Updating thread_local v1.0.1 -> v1.1.3 Updating time v0.1.44 -> v0.1.43 Updating wasi v0.10.0+wasi-snapshot-preview1 -> v0.10.2+wasi-snapshot-preview1 Updating yaml-rust v0.4.4 -> v0.4.5 Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-02-13Cargo.{lock,toml}: Update pandoc_ast and serde-auxDaniel Silverstone1-4/+4
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-02-07subplotlib: Add remove_dir_all dependencyDaniel Silverstone1-1/+105
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-01-10resource: Support embedded the resourcesDaniel Silverstone1-0/+1
We detect the content of the share/ tree at build time and embed files into it. Symbolic links to files will be followed and the target will be embedded. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2021-01-02chore: update Cargo.lock (with cargo update)Lars Wirzenius1-53/+104
Tests pass with this change.
2020-12-30subplotlib: Add runcmd step libraryDaniel Silverstone1-0/+14
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-12-29subplotlib: Add files step library, with testsDaniel Silverstone1-4/+25
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-12-28subplotlib: Trivial datadir supportDaniel Silverstone1-0/+12
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-12-21subplotlib: use state for contextDaniel Silverstone1-0/+7
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-12-21chore: Wire new libs into workspaceDaniel Silverstone1-0/+40
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-12-18bindings: Refactor kinds into a lazy static for reuseDaniel Silverstone1-0/+1
We want to use kind patterns elsewhere so refactoring them into a lazy static seemed sensible. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-11-21chore: Update serde-auxDaniel Silverstone1-3/+2
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-11-21chore: Update base64Daniel Silverstone1-5/+2
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-11-21chore: Run cargo updateDaniel Silverstone1-414/+387
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-11-04graphmarkup: Add pikchr rendererDaniel Silverstone1-0/+17
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-06-20feat: Ensure keys in bindings files are case insensitiveDaniel Silverstone1-0/+13
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-05-08chore: Update to pandoc 0.8.0 releaseDaniel Silverstone1-6/+6
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
2020-04-11Change: docgen to not change output needlesslyLars Wirzenius1-0/+7
If the output file wouldn't change, then don't update it. This is imperfect, since it still needs to produce the output file, so it can spend a bit of processing power to make no changes. But the alternative would be to make needless changes.
2020-03-28Change: use thiserror to simplify errors.rsLars Wirzenius1-6/+8
2020-03-20Change: bump dependency on roadmapLars Wirzenius1-3/+31
2020-02-26Add: --date option to sp-docgenLars Wirzenius1-0/+1
2020-01-08Change: use tera templates for generating Python codeLars Wirzenius1-42/+498
2019-12-22Add: struct Document to represent a Subplot documentLars Wirzenius1-0/+2
2019-12-14Change: update Cargo.lockLars Wirzenius1-66/+65
2019-11-30Change: typeset using bindings informationLars Wirzenius1-0/+5
Read bindings from the file named in the document meta data.
2019-10-20Add: depend on regex crateLars Wirzenius1-0/+43
2019-10-12Change: update Cargo.lockLars Wirzenius1-16/+16
2019-10-06Add: Cargo.lockLars Wirzenius1-0/+454
2019-09-28Add: initial, rough Debian packagingLars Wirzenius1-325/+0
2019-09-28Add: roadmap supportLars Wirzenius1-0/+43
2019-09-28Add: generate SVGs from dot graphs in code blocksLars Wirzenius1-0/+16
2019-09-17Change: depend on structopt 0.3Lars Wirzenius1-39/+16
2019-09-17Change: use structopt, instead of clapLars Wirzenius1-1/+73
2019-09-15Add: command line parsing, with clapLars Wirzenius1-0/+96
2019-09-15Add: initial no-op versionLars Wirzenius1-0/+121