Bump version (#348)

This commit is contained in:
Geometrically 2022-05-15 09:27:02 -07:00 committed by GitHub
parent b9b4f2bb7f
commit dd0aed4614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 6 deletions

2
Cargo.lock generated
View File

@ -1393,7 +1393,7 @@ dependencies = [
[[package]]
name = "labrinth"
version = "0.2.0"
version = "2.3.0"
dependencies = [
"actix",
"actix-cors",

View File

@ -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 <jai.a@tuta.io>", "Redblueflame <contact@redblueflame.com>", "Aeledfyr <aeledfyr@gmail.com>", "Charalampos Fanoulis <yo@fanoulis.dev>", "AppleTheGolden <scotsbox@protonmail.com>"]
edition = "2018"

View File

@ -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)]