From c2e6e54a504c5c09c60a5434466ce0fb9af99e9b Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 21 Jan 2024 16:17:23 +0000 Subject: [PATCH] Update Rocket --- examples/rocket_example/api/Cargo.toml | 2 +- examples/rocket_example/entity/Cargo.toml | 2 +- examples/rocket_example/migration/Cargo.toml | 2 +- examples/rocket_okapi_example/api/Cargo.toml | 2 +- examples/rocket_okapi_example/dto/Cargo.toml | 2 +- examples/rocket_okapi_example/entity/Cargo.toml | 2 +- examples/rocket_okapi_example/migration/Cargo.toml | 2 +- sea-orm-rocket/codegen/Cargo.toml | 2 +- sea-orm-rocket/lib/Cargo.toml | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/rocket_example/api/Cargo.toml b/examples/rocket_example/api/Cargo.toml index cbcc30478..a9282eb44 100644 --- a/examples/rocket_example/api/Cargo.toml +++ b/examples/rocket_example/api/Cargo.toml @@ -11,7 +11,7 @@ async-trait = { version = "0.1" } rocket-example-service = { path = "../service" } futures = { version = "0.3" } futures-util = { version = "0.3" } -rocket = { version = "0.5.0-rc.4", features = ["json"] } +rocket = { version = "0.5.0", features = ["json"] } rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] } serde_json = { version = "1" } entity = { path = "../entity" } diff --git a/examples/rocket_example/entity/Cargo.toml b/examples/rocket_example/entity/Cargo.toml index 67ee1f235..8b55ace60 100644 --- a/examples/rocket_example/entity/Cargo.toml +++ b/examples/rocket_example/entity/Cargo.toml @@ -9,7 +9,7 @@ name = "entity" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.4", features = ["json"] } +rocket = { version = "0.5.0", features = ["json"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index 1d11fc040..8a68bc6ea 100644 --- a/examples/rocket_example/migration/Cargo.toml +++ b/examples/rocket_example/migration/Cargo.toml @@ -9,7 +9,7 @@ name = "migration" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.4" } +rocket = { version = "0.5.0" } async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] diff --git a/examples/rocket_okapi_example/api/Cargo.toml b/examples/rocket_okapi_example/api/Cargo.toml index 91fe0e6a1..eeb94822d 100644 --- a/examples/rocket_okapi_example/api/Cargo.toml +++ b/examples/rocket_okapi_example/api/Cargo.toml @@ -11,7 +11,7 @@ async-trait = { version = "0.1" } rocket-okapi-example-service = { path = "../service" } futures = { version = "0.3" } futures-util = { version = "0.3" } -rocket = { version = "0.5.0-rc.4", features = ["json"] } +rocket = { version = "0.5.0", features = ["json"] } rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] } serde_json = { version = "1" } entity = { path = "../entity" } diff --git a/examples/rocket_okapi_example/dto/Cargo.toml b/examples/rocket_okapi_example/dto/Cargo.toml index 233a3dc8c..1f08ac4e7 100644 --- a/examples/rocket_okapi_example/dto/Cargo.toml +++ b/examples/rocket_okapi_example/dto/Cargo.toml @@ -9,7 +9,7 @@ name = "dto" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.4", features = ["json"] } +rocket = { version = "0.5.0", features = ["json"] } [dependencies.entity] path = "../entity" diff --git a/examples/rocket_okapi_example/entity/Cargo.toml b/examples/rocket_okapi_example/entity/Cargo.toml index 653acebe4..051056def 100644 --- a/examples/rocket_okapi_example/entity/Cargo.toml +++ b/examples/rocket_okapi_example/entity/Cargo.toml @@ -9,7 +9,7 @@ name = "entity" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.4", features = ["json"] } +rocket = { version = "0.5.0", features = ["json"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project diff --git a/examples/rocket_okapi_example/migration/Cargo.toml b/examples/rocket_okapi_example/migration/Cargo.toml index 1d11fc040..8a68bc6ea 100644 --- a/examples/rocket_okapi_example/migration/Cargo.toml +++ b/examples/rocket_okapi_example/migration/Cargo.toml @@ -9,7 +9,7 @@ name = "migration" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.4" } +rocket = { version = "0.5.0" } async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] diff --git a/sea-orm-rocket/codegen/Cargo.toml b/sea-orm-rocket/codegen/Cargo.toml index 52600884b..5b41fbed9 100644 --- a/sea-orm-rocket/codegen/Cargo.toml +++ b/sea-orm-rocket/codegen/Cargo.toml @@ -17,6 +17,6 @@ devise = "0.3" quote = "1" [dev-dependencies] -rocket = { version = "0.5.0-rc.4", default-features = false } +rocket = { version = "0.5.0", default-features = false } trybuild = "1.0" version_check = "0.9" diff --git a/sea-orm-rocket/lib/Cargo.toml b/sea-orm-rocket/lib/Cargo.toml index c9dcaffd6..a8dd6ccff 100644 --- a/sea-orm-rocket/lib/Cargo.toml +++ b/sea-orm-rocket/lib/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" all-features = true [dependencies.rocket] -version = "0.5.0-rc.4" +version = "0.5.0" default-features = false [dependencies.sea-orm-rocket-codegen] @@ -26,7 +26,7 @@ version = "0.5.1" # optional = true [dev-dependencies.rocket] -version = "0.5.0-rc.4" +version = "0.5.0" default-features = false features = ["json"]