diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-17T00·41+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-17T01·18+0000 |
commit | 5e5e02d6a715042c69812d26357b956d7f53f1af (patch) | |
tree | 9770709c80d83066e64cad303481e3204a1d8814 /tools/cheddar/Cargo.lock | |
parent | 51594b0594fe799c39d0a6a62317fb443d81a23a (diff) |
refactor(cheddar): Switch to clap-rs for command line arguments r/1005
The complexity of the arg parsing is increasing somewhat because we're adding more features to cheddar, so to set us up for that this switches the arg parsing to the somewhat more flexible clap. Change-Id: I187bc0c1b6c6bd596fa0f6bb494b04e335262ba9 Reviewed-on: https://cl.tvl.fyi/c/depot/+/445 Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'tools/cheddar/Cargo.lock')
-rw-r--r-- | tools/cheddar/Cargo.lock | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/cheddar/Cargo.lock b/tools/cheddar/Cargo.lock index be70e178abb7..ab1225cc6bea 100644 --- a/tools/cheddar/Cargo.lock +++ b/tools/cheddar/Cargo.lock @@ -98,6 +98,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" name = "cheddar" version = "0.1.0" dependencies = [ + "clap 2.33.1 (registry+https://github.com/rust-lang/crates.io-index)", "comrak 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "syntect 4.2.0 (registry+https://github.com/rust-lang/crates.io-index)", |