Skip to content

Commit

Permalink
fix: change name again
Browse files Browse the repository at this point in the history
  • Loading branch information
wujackwill committed Jan 31, 2024
1 parent e91e876 commit adf4c9c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "todo-cli"
name = "todo-cli-app"
version = "0.1.0"
edition = "2021"
authors = ["Jack Will <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::io::{BufRead, BufReader};

/// A fictional versioning CLI
#[derive(Debug, Parser)] // requires `derive` feature
#[command(name = "todo-cli")]
#[command(name = "todo-cli-app")]
#[command(about = "Yet another todo CLI app written in Rust", long_about = None)]
pub struct Cli {
/// The path to the file to read/write!
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use anyhow::Context;
use todo_cli::*;
use todo_cli_app::*;
use std::env;
use std::io::{BufRead, BufReader};
use clap::Parser;
Expand Down

0 comments on commit adf4c9c

Please sign in to comment.