From 1aa86b0963b30b6927a5956d14fb693b18dbd621 Mon Sep 17 00:00:00 2001 From: hole-thu Date: Fri, 17 Jun 2022 02:15:55 +0800 Subject: [PATCH] lock rocket version to rc.1 --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7efb770..23d8cda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,8 +11,11 @@ default = ["mastlogin"] mastlogin = ["url", "reqwest"] [dependencies] -rocket = { version = "0.5.0-rc.1", features = ["json"] } -rocket_sync_db_pools = { version = "0.1.0-cr.1", features = ["diesel_postgres_pool"] } +rocket = { version = "=0.5.0-rc.1", features = ["json"] } +rocket_codegen = "=0.5.0-rc.1" +rocket_http = "=0.5.0-rc.1" +rocket_sync_db_pools_codegen = "=0.1.0-rc.1" +rocket_sync_db_pools = { version = "=0.1.0-rc.1", features = ["diesel_postgres_pool"] } diesel = { version = "1.4.8", features = ["postgres", "chrono"] } diesel_migrations = "1.4.0" tokio = "1.17.0"