diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-02-03 18:19:39 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-02-03 18:19:39 +1300 |
commit | 07c13d707f4b104b2068d1816801f0540085e705 (patch) | |
tree | 34fa4b89254cec6bf56456bb3f3e161fb01d988f /Cargo.lock | |
parent | 582b9c3408f391f7dbba85bb5909c3deb7091f4b (diff) | |
download | toaster-07c13d707f4b104b2068d1816801f0540085e705.zip |
Use switchboard crate for parsing command line arguments
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -13,37 +13,37 @@ version = "3.2.0" source = "git+git://benbridle.com/markdown?tag=v3.2.0#883a2a63023ea9b1e4b2bb51831ea1dafcb7346a" [[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] name = "recipe" version = "1.4.0" source = "git+git://benbridle.com/recipe?tag=v1.4.0#652aaee3130e2ee02742fdcc248ddd1bee285737" [[package]] +name = "switchboard" +version = "1.0.0" +source = "git+git://benbridle.com/switchboard?tag=v1.0.0#ea70fa89659e5cf1a9d4ca6ea31fb67f7a2cc633" +dependencies = [ + "log", + "paste", +] + +[[package]] name = "toaster" version = "1.8.0" dependencies = [ "log", "markdown", "recipe", + "switchboard", "vagabond", - "xflags", ] [[package]] name = "vagabond" version = "1.1.0" source = "git+git://benbridle.com/vagabond?tag=v1.1.0#6e759a3abb3bc3e5da42d69a6f20ec2c31eb33de" - -[[package]] -name = "xflags" -version = "0.4.0-pre.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6a40f95e4e200baabdfe8b813e3ee754b58407a677141bd2890c28ef4a89c21" -dependencies = [ - "xflags-macros", -] - -[[package]] -name = "xflags-macros" -version = "0.4.0-pre.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a6d9b56f406f5754a3808524166b6e6bdfe219c0526e490cfc39ecc0582a4e6" |