Skip to content

Commit

Permalink
Rename the project
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasleal570 committed Oct 15, 2024
1 parent 05e704c commit 9c90e87
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 17 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "rust-mailsy"
name = "termimail"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Generate temporary email domains from your terminal with ease"
authors = ["Nicolás Leal <lealnicolas96@gmail.com>"]
repository = "https://github.com/nicolasleal570/termimail"

[[bin]]
name = "termimail"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use features::{
fn cli() -> Command {
const VERSION: &str = env!("CARGO_PKG_VERSION");

Command::new("termail")
Command::new("termimail")
.about("Generate temporal email domains from your terminal with ease (Mailsy alternative)")
.version(VERSION)
.subcommand_required(true)
Expand Down

0 comments on commit 9c90e87

Please sign in to comment.