diff --git a/Cargo.toml b/Cargo.toml index 6d015be..d81e8bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "buildrs" -version = "0.1.0" +version = "0.1.1" authors = ["Hatter Jiang "] edition = "2018" license = "MIT" diff --git a/src/cmd_newcliapp.rs b/src/cmd_newcliapp.rs index 479f7cd..6f3f322 100644 --- a/src/cmd_newcliapp.rs +++ b/src/cmd_newcliapp.rs @@ -2,7 +2,7 @@ use std::fs::{ self, File, }; use clap::{ Arg, ArgMatches, SubCommand, App, }; use crate::cmd::{ Command, CommandError, }; -const CARGO_TOML_FILE: &str = "Carto.toml"; +const CARGO_TOML_FILE: &str = "Cargo.toml"; const MAIN_RS: &str = include_str!("main.rs_template"); const CMD_RS: &str = include_str!("cmd.rs");