fix Cargo.toml name

This commit is contained in:
2020-06-14 00:24:38 +08:00
parent 778bc279e4
commit 13cb431326
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "buildrs"
version = "0.1.0"
version = "0.1.1"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
license = "MIT"

View File

@@ -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");