diff --git a/examples/rocket_example/api/Cargo.toml b/examples/rocket_example/api/Cargo.toml index 1b758774..793cfbf0 100644 --- a/examples/rocket_example/api/Cargo.toml +++ b/examples/rocket_example/api/Cargo.toml @@ -11,12 +11,12 @@ async-trait = { version = "0.1" } rocket-example-service = { path = "../service" } futures = { version = "0.3" } futures-util = { version = "0.3" } -rocket = { version = "0.5.0", features = ["json"] } -rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] } +rocket = { version = "0.5", features = ["json"] } +rocket_dyn_templates = { version = "0.2", features = ["tera"] } serde_json = { version = "1" } entity = { path = "../entity" } migration = { path = "../migration" } -tokio = "1.29.0" +tokio = "1.41" [dependencies.sea-orm-rocket] path = "../../../sea-orm-rocket/lib" # remove this line in your own project and uncomment the following line diff --git a/examples/rocket_example/entity/Cargo.toml b/examples/rocket_example/entity/Cargo.toml index 4f16a281..2ab1116e 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", features = ["json"] } +rocket = { version = "0.5", 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 411e6bd8..a70232b3 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" } +rocket = { version = "0.5" } async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] diff --git a/examples/rocket_example/service/Cargo.toml b/examples/rocket_example/service/Cargo.toml index 0b8566b2..5cac76e3 100644 --- a/examples/rocket_example/service/Cargo.toml +++ b/examples/rocket_example/service/Cargo.toml @@ -19,7 +19,7 @@ features = [ ] [dev-dependencies] -tokio = "1.20.0" +tokio = "1.41" [features] mock = ["sea-orm/mock"] diff --git a/examples/rocket_okapi_example/api/Cargo.toml b/examples/rocket_okapi_example/api/Cargo.toml index 877b6569..5592b2b3 100644 --- a/examples/rocket_okapi_example/api/Cargo.toml +++ b/examples/rocket_okapi_example/api/Cargo.toml @@ -11,14 +11,18 @@ 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", features = ["json"] } -rocket_cors = "0.6.0" -rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] } -rocket_okapi = { version = "0.8.0", features = ["swagger", "rapidoc", "rocket_db_pools"] } +rocket = { version = "0.5", features = ["json"] } +rocket_cors = "0.6" +rocket_dyn_templates = { version = "0.2", features = ["tera"] } +rocket_okapi = { version = "0.9", features = [ + "swagger", + "rapidoc", + "rocket_db_pools", +] } serde_json = { version = "1" } entity = { path = "../entity" } migration = { path = "../migration" } -tokio = "1.20.0" +tokio = "1.41" serde = "1.0" dto = { path = "../dto" } diff --git a/examples/rocket_okapi_example/dto/Cargo.toml b/examples/rocket_okapi_example/dto/Cargo.toml index 078592cc..524ac2eb 100644 --- a/examples/rocket_okapi_example/dto/Cargo.toml +++ b/examples/rocket_okapi_example/dto/Cargo.toml @@ -9,10 +9,10 @@ name = "dto" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0", features = ["json"] } +rocket = { version = "0.5", features = ["json"] } [dependencies.entity] path = "../entity" [dependencies.rocket_okapi] -version = "0.8.0" +version = "0.9" diff --git a/examples/rocket_okapi_example/entity/Cargo.toml b/examples/rocket_okapi_example/entity/Cargo.toml index f10f11a7..727fcc83 100644 --- a/examples/rocket_okapi_example/entity/Cargo.toml +++ b/examples/rocket_okapi_example/entity/Cargo.toml @@ -9,11 +9,11 @@ name = "entity" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0", features = ["json"] } +rocket = { version = "0.5", features = ["json"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project version = "~1.1.3" # sea-orm version [dependencies.rocket_okapi] -version = "0.8.0" +version = "0.9" diff --git a/examples/rocket_okapi_example/migration/Cargo.toml b/examples/rocket_okapi_example/migration/Cargo.toml index 411e6bd8..a70232b3 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" } +rocket = { version = "0.5" } async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] diff --git a/examples/rocket_okapi_example/service/Cargo.toml b/examples/rocket_okapi_example/service/Cargo.toml index 2a6231ac..ed41736a 100644 --- a/examples/rocket_okapi_example/service/Cargo.toml +++ b/examples/rocket_okapi_example/service/Cargo.toml @@ -13,13 +13,13 @@ path = "../../../" # remove this line in your own project version = "~1.1.3" # sea-orm version features = [ "runtime-tokio-native-tls", -# "sqlx-postgres", -# "sqlx-mysql", + # "sqlx-postgres", + # "sqlx-mysql", "sqlx-sqlite", ] [dev-dependencies] -tokio = "1.20.0" +tokio = "1.41" [features] mock = ["sea-orm/mock"] diff --git a/sea-orm-rocket/codegen/Cargo.toml b/sea-orm-rocket/codegen/Cargo.toml index 838f973e..78435b09 100644 --- a/sea-orm-rocket/codegen/Cargo.toml +++ b/sea-orm-rocket/codegen/Cargo.toml @@ -13,10 +13,10 @@ edition = "2021" proc-macro = true [dependencies] -devise = "0.3" +devise = "0.4" quote = "1" [dev-dependencies] -rocket = { version = "0.5.0", default-features = false } -trybuild = "1.0" +rocket = { version = "0.5", default-features = false } +trybuild = "1" version_check = "0.9" diff --git a/sea-orm-rocket/lib/Cargo.toml b/sea-orm-rocket/lib/Cargo.toml index b906ae1a..95e4d739 100644 --- a/sea-orm-rocket/lib/Cargo.toml +++ b/sea-orm-rocket/lib/Cargo.toml @@ -13,19 +13,19 @@ edition = "2021" all-features = true [dependencies.rocket] -version = "0.5.0" +version = "0.5" default-features = false [dependencies.sea-orm-rocket-codegen] path = "../codegen" -version = "0.5.1" +version = "0.5" [dependencies.rocket_okapi] -version = "0.8.0" +version = "0.9" default-features = false optional = true [dev-dependencies.rocket] -version = "0.5.0" +version = "0.5" default-features = false features = ["json"]