diff options
author | Teddy Wing | 2021-06-05 13:11:03 +0200 |
---|---|---|
committer | Teddy Wing | 2021-06-05 13:11:03 +0200 |
commit | 2a05b269344ab324aa73a634256a0b82fa79f201 (patch) | |
tree | f88049c86dc293a6f5423893b23183a569fa2012 /Cargo.lock | |
parent | 3964a27da7cf61b540992387e8553382dffecb46 (diff) | |
download | reflectub-2a05b269344ab324aa73a634256a0b82fa79f201.tar.bz2 |
Add command line option parsing
Define the options we want to take. Not using them yet.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -228,6 +228,12 @@ dependencies = [ ] [[package]] +name = "exitcode" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" + +[[package]] name = "filetime" version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -381,6 +387,15 @@ dependencies = [ ] [[package]] +name = "getopts" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" +dependencies = [ + "unicode-width", +] + +[[package]] name = "getrandom" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1024,7 +1039,9 @@ version = "0.0.1" dependencies = [ "anyhow", "chrono", + "exitcode", "filetime", + "getopts", "git2", "reqwest", "serde", @@ -1588,6 +1605,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" [[package]] +name = "unicode-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" + +[[package]] name = "unicode-xid" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" |