From 49fea443efcaaec93f88a6a2a279e0a738640fda Mon Sep 17 00:00:00 2001 From: Fankai Liu Date: Thu, 16 Nov 2023 22:38:31 +0800 Subject: [PATCH] update version --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- src/main.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58c6474..21ff5d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -798,7 +798,7 @@ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "salvo-cli" -version = "0.1.21" +version = "0.1.22" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 3a5e36c..bf31c7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salvo-cli" -version = "0.1.21" +version = "0.1.22" edition = "2021" authors = ["Fankai Liu liufankai137@outlook.com","mrxiaozhuox mrxzx.info@gmail.com"] keywords = ["salvo", "cli","template"] diff --git a/README.md b/README.md index 955bfe2..24fa86f 100644 --- a/README.md +++ b/README.md @@ -97,11 +97,11 @@ cargo install --force salvo-cli | ✅ | web api template | | ✅ | web site template | | ✅ | Template with SQLx, SeaORM, Diesel, Rbatis (support for SQLite, PostgreSQL, MySQL) | -| ✅ | Basic middleware | +| ✅ | jwt,cors... middleware | | ✅ | Support for MongoDB | -| ⏳ | More middleware | +| ⏳ | command:salvo run | | ⏳ | Support for docker | -| ⏳ | More integrations with good crates (validation, embedding, permissions or others?) | +| ⏳ | More integrations with good crates (validation, permissions or others?) | | ⏳ | Split into multiple crates for clearer code organization | ## License diff --git a/src/main.rs b/src/main.rs index b0729e7..7a88103 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,7 @@ use i18n::set_locale; mod i18n; rust_i18n::i18n!("locales", fallback = "en"); #[derive(Parser, Debug)] -#[clap(version = "0.1.21", author = "Fankai liu ")] +#[clap(version = "0.1.22", author = "Fankai liu ")] struct Opts { #[clap(subcommand)] subcmd: SubCommand,