diff --git a/Cargo.lock b/Cargo.lock index e9c6763..abaeb91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1310,7 +1310,7 @@ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" [[package]] name = "registry-backup" -version = "0.2.3" +version = "0.2.4" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index b0a74e2..bf9f870 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,15 @@ [package] name = "registry-backup" authors = ["Jonathan Strong "] -version = "0.2.3" +version = "0.2.4" edition = "2021" publish = ["shipyard-rs-public"] +readme = "README.md" +repository = "https://git.shipyard.rs/jstrong/registry-backup" +homepage = "https://git.shipyard.rs/jstrong/registry-backup" +documentation = "https://git.shipyard.rs/jstrong/registry-backup" +license-file = "LICENSE" +description = "CLI tool for backup/export of .crate files from a registry server" [[bin]] name = "registry-backup" diff --git a/README.md b/README.md index 8a9dc33..6dfa810 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ $ cargo install registry-backup --git https://git.shipyard.rs/jstrong/registry-b ```console $ ./target/release/registry-backup --help -registry-backup 0.2.3 +registry-backup 0.2.4 Jonathan Strong Download all .crate files from a registry server @@ -59,7 +59,7 @@ OPTIONS: Directory where downloaded .crate files will be saved to [default: output] -u, --user-agent - Value of user-agent HTTP header [default: registry-backup/v0.2.3] + Value of user-agent HTTP header [default: registry-backup/v0.2.4] --requests-per-second Requests to registry server will not exceed this rate [default: 25] @@ -159,7 +159,7 @@ The commands that mirror cargo commands (e.g. `just test`) are included for the This file is generated using a template (`doc/README.tera.md`) rendered using updated outputs of the CLI menu, config sample, and other values. -This version of `README.md` was generated at `Fri, 09 Sep 2022 03:16:40 +0000` based on git commit `37e86bd4`. +This version of `README.md` was generated at `Fri, 09 Sep 2022 03:23:10 +0000` based on git commit `73f5fee4`. To (re-)generate the `README.md` file, use the justfile command: diff --git a/doc/cli-menu.txt b/doc/cli-menu.txt index 4bd739b..01d2120 100644 --- a/doc/cli-menu.txt +++ b/doc/cli-menu.txt @@ -1,4 +1,4 @@ -registry-backup 0.2.3 +registry-backup 0.2.4 Jonathan Strong Download all .crate files from a registry server @@ -18,7 +18,7 @@ OPTIONS: Directory where downloaded .crate files will be saved to [default: output] -u, --user-agent - Value of user-agent HTTP header [default: registry-backup/v0.2.3] + Value of user-agent HTTP header [default: registry-backup/v0.2.4] --requests-per-second Requests to registry server will not exceed this rate [default: 25] diff --git a/src/main.rs b/src/main.rs index 2ba9e69..f988469 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,7 +95,6 @@ pub struct HttpConfig { #[clap( author, version, - about, global_setting(clap::AppSettings::DeriveDisplayOrder) )] pub struct Config {