diff --git a/Cargo.toml b/Cargo.toml index 0e1f9c8..f085d3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,9 @@ name = "weather-cli" description = "Minimalistic command-line weather program. It works with OpenWeather API." keywords = ["weather", "open-weather-api"] version = "0.4.0" -authors = ["Stellar"] +authors = ["Pixella"] license = "MIT" -repository = "https://github.com/cosmostellar/weather-cli" +repository = "https://github.com/pixelbracket/weather-cli" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/LICENSE b/LICENSE index e05cc02..ac6cc31 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023-2024 cosmostellar +Copyright (c) 2023-2024 pixelbracket Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/program_info.rs b/src/program_info.rs index 6c3340b..e039b4f 100644 --- a/src/program_info.rs +++ b/src/program_info.rs @@ -7,8 +7,8 @@ pub const PROGRAM_DESCRIPTION: &str = pub const ABOUT: &str = "* weather-cli - Minimalistic command-line weather program. It works with OpenWeather API."; /// Author name of the program. -pub const PROGRAM_AUTHORS: &str = "Stellar"; +pub const PROGRAM_AUTHORS: &str = "Pixella"; /// URL of the program on crates.io. pub const CRATES_IO_URL: &str = "https://crates.io/crates/weather-cli"; /// URL of the program repository. -pub const REPOSITORY_URL: &str = "https://github.com/cosmostellar/weather-cli"; +pub const REPOSITORY_URL: &str = "https://github.com/pixelbracket/weather-cli";