From dd0aed46142acf35e15eab759656a4ff6cbb06a6 Mon Sep 17 00:00:00 2001 From: Geometrically <18202329+Geometrically@users.noreply.github.com> Date: Sun, 15 May 2022 09:27:02 -0700 Subject: [PATCH] Bump version (#348) --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/routes/mod.rs | 5 +---- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a643e884..96dc1122 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1393,7 +1393,7 @@ dependencies = [ [[package]] name = "labrinth" -version = "0.2.0" +version = "2.3.0" dependencies = [ "actix", "actix-cors", diff --git a/Cargo.toml b/Cargo.toml index 64992d38..d928a445 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "labrinth" -version = "0.2.0" +version = "2.3.0" #Team members, please add your emails and usernames authors = ["geometrically ", "Redblueflame ", "Aeledfyr ", "Charalampos Fanoulis ", "AppleTheGolden "] edition = "2018" diff --git a/src/routes/mod.rs b/src/routes/mod.rs index 063dde34..a012754a 100644 --- a/src/routes/mod.rs +++ b/src/routes/mod.rs @@ -158,10 +158,7 @@ pub fn reports_config(cfg: &mut web::ServiceConfig) { } pub fn admin_config(cfg: &mut web::ServiceConfig) { - cfg.service( - web::scope("admin") - .service(admin::count_download) - ); + cfg.service(web::scope("admin").service(admin::count_download)); } #[derive(thiserror::Error, Debug)]