diff --git a/Cargo.lock b/Cargo.lock index f06c74b..1825238 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2725,9 +2725,9 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04182dffc9091a404e0fc069ea5cd60e5b866c3adf881eff99a32d048242dffa" +checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5" dependencies = [ "openssl-probe", "rustls-pemfile", diff --git a/Cargo.toml b/Cargo.toml index 76b6e10..0f4ed62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "xlm" +authors = ["Blooym"] version = "0.1.0" edition = "2021" diff --git a/src/main.rs b/src/main.rs index 4200273..5db82c5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,8 +68,8 @@ async fn main() -> Result<()> { use self_update::cargo_crate_version; debug!("Running XLM self-updater"); let result = self_update::backends::github::Update::configure() - .repo_owner(&args.xlm_updater_repo_name) - .repo_name(&args.xlm_updater_repo_owner) + .repo_owner(&args.xlm_updater_repo_owner) + .repo_name(&args.xlm_updater_repo_name) .bin_name(env!("CARGO_PKG_NAME")) .show_output(false) .no_confirm(true)