From 1218b1e9422ef4775358eda752eb67b00fb6cca8 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 4 Oct 2024 17:44:29 +0800 Subject: [PATCH] update examples --- examples/actix_example/entity/Cargo.toml | 2 +- examples/actix_example/migration/Cargo.toml | 2 +- examples/actix_example/service/Cargo.toml | 2 +- examples/axum_example/entity/Cargo.toml | 2 +- examples/axum_example/migration/Cargo.toml | 2 +- examples/axum_example/service/Cargo.toml | 2 +- examples/graphql_example/entity/Cargo.toml | 2 +- examples/graphql_example/migration/Cargo.toml | 2 +- examples/graphql_example/service/Cargo.toml | 2 +- examples/jsonrpsee_example/entity/Cargo.toml | 2 +- examples/jsonrpsee_example/migration/Cargo.toml | 2 +- examples/jsonrpsee_example/service/Cargo.toml | 2 +- examples/loco_example/Cargo.toml | 2 +- examples/loco_example/migration/Cargo.toml | 2 +- examples/loco_seaography/Cargo.toml | 2 +- examples/loco_seaography/migration/Cargo.toml | 2 +- examples/loco_starter/Cargo.toml | 2 +- examples/loco_starter/migration/Cargo.toml | 2 +- examples/poem_example/entity/Cargo.toml | 2 +- examples/poem_example/migration/Cargo.toml | 2 +- examples/poem_example/service/Cargo.toml | 2 +- examples/react_admin/backend/Cargo.toml | 2 +- examples/react_admin/backend/migration/Cargo.toml | 2 +- examples/rocket_example/entity/Cargo.toml | 2 +- examples/rocket_example/migration/Cargo.toml | 2 +- examples/rocket_example/service/Cargo.toml | 2 +- examples/rocket_okapi_example/entity/Cargo.toml | 2 +- examples/rocket_okapi_example/migration/Cargo.toml | 2 +- examples/rocket_okapi_example/service/Cargo.toml | 2 +- examples/salvo_example/entity/Cargo.toml | 2 +- examples/salvo_example/migration/Cargo.toml | 2 +- examples/salvo_example/service/Cargo.toml | 2 +- examples/seaography_example/migration/Cargo.toml | 4 ++-- examples/tonic_example/entity/Cargo.toml | 2 +- examples/tonic_example/migration/Cargo.toml | 2 +- examples/tonic_example/service/Cargo.toml | 2 +- 36 files changed, 37 insertions(+), 37 deletions(-) diff --git a/examples/actix_example/entity/Cargo.toml b/examples/actix_example/entity/Cargo.toml index 42a27adea..a3804a48d 100644 --- a/examples/actix_example/entity/Cargo.toml +++ b/examples/actix_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/actix_example/migration/Cargo.toml b/examples/actix_example/migration/Cargo.toml index ffe88e262..144fbf43c 100644 --- a/examples/actix_example/migration/Cargo.toml +++ b/examples/actix_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-actix-native-tls", diff --git a/examples/actix_example/service/Cargo.toml b/examples/actix_example/service/Cargo.toml index 9400263eb..ccef9cfac 100644 --- a/examples/actix_example/service/Cargo.toml +++ b/examples/actix_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-async-std-native-tls", diff --git a/examples/axum_example/entity/Cargo.toml b/examples/axum_example/entity/Cargo.toml index 42a27adea..a3804a48d 100644 --- a/examples/axum_example/entity/Cargo.toml +++ b/examples/axum_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/axum_example/migration/Cargo.toml b/examples/axum_example/migration/Cargo.toml index efc3e6510..07f2cc5d1 100644 --- a/examples/axum_example/migration/Cargo.toml +++ b/examples/axum_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/axum_example/service/Cargo.toml b/examples/axum_example/service/Cargo.toml index cfeb24110..78807742b 100644 --- a/examples/axum_example/service/Cargo.toml +++ b/examples/axum_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/graphql_example/entity/Cargo.toml b/examples/graphql_example/entity/Cargo.toml index d09299836..ca995a4ab 100644 --- a/examples/graphql_example/entity/Cargo.toml +++ b/examples/graphql_example/entity/Cargo.toml @@ -16,4 +16,4 @@ version = "5.0.10" [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/graphql_example/migration/Cargo.toml b/examples/graphql_example/migration/Cargo.toml index 0f3522d44..30915fa34 100644 --- a/examples/graphql_example/migration/Cargo.toml +++ b/examples/graphql_example/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/graphql_example/service/Cargo.toml b/examples/graphql_example/service/Cargo.toml index 3229054ae..a622fa7f0 100644 --- a/examples/graphql_example/service/Cargo.toml +++ b/examples/graphql_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-async-std-native-tls", diff --git a/examples/jsonrpsee_example/entity/Cargo.toml b/examples/jsonrpsee_example/entity/Cargo.toml index 42a27adea..a3804a48d 100644 --- a/examples/jsonrpsee_example/entity/Cargo.toml +++ b/examples/jsonrpsee_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/jsonrpsee_example/migration/Cargo.toml b/examples/jsonrpsee_example/migration/Cargo.toml index 07649ac37..ab4f7e80c 100644 --- a/examples/jsonrpsee_example/migration/Cargo.toml +++ b/examples/jsonrpsee_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/jsonrpsee_example/service/Cargo.toml b/examples/jsonrpsee_example/service/Cargo.toml index dfd4bbf6f..647a9465c 100644 --- a/examples/jsonrpsee_example/service/Cargo.toml +++ b/examples/jsonrpsee_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/loco_example/Cargo.toml b/examples/loco_example/Cargo.toml index 20108f251..26a3d1d45 100644 --- a/examples/loco_example/Cargo.toml +++ b/examples/loco_example/Cargo.toml @@ -27,7 +27,7 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "sqlx-sqlite", "sqlx-postgres", diff --git a/examples/loco_example/migration/Cargo.toml b/examples/loco_example/migration/Cargo.toml index ec0a252e8..9e1e21242 100644 --- a/examples/loco_example/migration/Cargo.toml +++ b/examples/loco_example/migration/Cargo.toml @@ -14,7 +14,7 @@ loco-rs = { version = "0.7" } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/examples/loco_seaography/Cargo.toml b/examples/loco_seaography/Cargo.toml index 52fb9850f..bc74d2a5e 100644 --- a/examples/loco_seaography/Cargo.toml +++ b/examples/loco_seaography/Cargo.toml @@ -34,7 +34,7 @@ tower-service = { version = "0.3" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "sqlx-sqlite", "sqlx-postgres", diff --git a/examples/loco_seaography/migration/Cargo.toml b/examples/loco_seaography/migration/Cargo.toml index cb4e8bd21..c3df6cdb3 100644 --- a/examples/loco_seaography/migration/Cargo.toml +++ b/examples/loco_seaography/migration/Cargo.toml @@ -14,7 +14,7 @@ loco-rs = { version = "0.7.0" } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/examples/loco_starter/Cargo.toml b/examples/loco_starter/Cargo.toml index 1ad7d5762..2ce10665a 100644 --- a/examples/loco_starter/Cargo.toml +++ b/examples/loco_starter/Cargo.toml @@ -28,7 +28,7 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "sqlx-sqlite", "sqlx-postgres", diff --git a/examples/loco_starter/migration/Cargo.toml b/examples/loco_starter/migration/Cargo.toml index cb4e8bd21..c3df6cdb3 100644 --- a/examples/loco_starter/migration/Cargo.toml +++ b/examples/loco_starter/migration/Cargo.toml @@ -14,7 +14,7 @@ loco-rs = { version = "0.7.0" } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/examples/poem_example/entity/Cargo.toml b/examples/poem_example/entity/Cargo.toml index 42a27adea..a3804a48d 100644 --- a/examples/poem_example/entity/Cargo.toml +++ b/examples/poem_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/poem_example/migration/Cargo.toml b/examples/poem_example/migration/Cargo.toml index 07649ac37..ab4f7e80c 100644 --- a/examples/poem_example/migration/Cargo.toml +++ b/examples/poem_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/poem_example/service/Cargo.toml b/examples/poem_example/service/Cargo.toml index 33a0e2857..e5d515aa6 100644 --- a/examples/poem_example/service/Cargo.toml +++ b/examples/poem_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-async-std-native-tls", diff --git a/examples/react_admin/backend/Cargo.toml b/examples/react_admin/backend/Cargo.toml index 6911467eb..afe7119ec 100644 --- a/examples/react_admin/backend/Cargo.toml +++ b/examples/react_admin/backend/Cargo.toml @@ -34,7 +34,7 @@ tower-service = { version = "0.3" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "sqlx-sqlite", "sqlx-postgres", diff --git a/examples/react_admin/backend/migration/Cargo.toml b/examples/react_admin/backend/migration/Cargo.toml index bf5932608..eb2c7af0c 100644 --- a/examples/react_admin/backend/migration/Cargo.toml +++ b/examples/react_admin/backend/migration/Cargo.toml @@ -14,7 +14,7 @@ loco-rs = { version = "0.7.0" } [dependencies.sea-orm-migration] path = "../../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI. # View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime. diff --git a/examples/rocket_example/entity/Cargo.toml b/examples/rocket_example/entity/Cargo.toml index 5fc260e86..c74dcfb37 100644 --- a/examples/rocket_example/entity/Cargo.toml +++ b/examples/rocket_example/entity/Cargo.toml @@ -13,4 +13,4 @@ rocket = { version = "0.5.0", features = ["json"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/rocket_example/migration/Cargo.toml b/examples/rocket_example/migration/Cargo.toml index 9620e692f..894e90ab0 100644 --- a/examples/rocket_example/migration/Cargo.toml +++ b/examples/rocket_example/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/rocket_example/service/Cargo.toml b/examples/rocket_example/service/Cargo.toml index d9326c08d..d5ea0e100 100644 --- a/examples/rocket_example/service/Cargo.toml +++ b/examples/rocket_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "runtime-tokio-native-tls", "sqlx-postgres", diff --git a/examples/rocket_okapi_example/entity/Cargo.toml b/examples/rocket_okapi_example/entity/Cargo.toml index 10f24dadc..76d793c55 100644 --- a/examples/rocket_okapi_example/entity/Cargo.toml +++ b/examples/rocket_okapi_example/entity/Cargo.toml @@ -13,7 +13,7 @@ rocket = { version = "0.5.0", features = ["json"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version [dependencies.rocket_okapi] version = "0.8.0" diff --git a/examples/rocket_okapi_example/migration/Cargo.toml b/examples/rocket_okapi_example/migration/Cargo.toml index 9620e692f..894e90ab0 100644 --- a/examples/rocket_okapi_example/migration/Cargo.toml +++ b/examples/rocket_okapi_example/migration/Cargo.toml @@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/rocket_okapi_example/service/Cargo.toml b/examples/rocket_okapi_example/service/Cargo.toml index 0b6a68c36..67276ab7c 100644 --- a/examples/rocket_okapi_example/service/Cargo.toml +++ b/examples/rocket_okapi_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "runtime-tokio-native-tls", # "sqlx-postgres", diff --git a/examples/salvo_example/entity/Cargo.toml b/examples/salvo_example/entity/Cargo.toml index b0d8c4f65..7074fbc3e 100644 --- a/examples/salvo_example/entity/Cargo.toml +++ b/examples/salvo_example/entity/Cargo.toml @@ -14,4 +14,4 @@ salvo = { version = "0.50" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/salvo_example/migration/Cargo.toml b/examples/salvo_example/migration/Cargo.toml index 07649ac37..ab4f7e80c 100644 --- a/examples/salvo_example/migration/Cargo.toml +++ b/examples/salvo_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-native-tls", diff --git a/examples/salvo_example/service/Cargo.toml b/examples/salvo_example/service/Cargo.toml index ec84b45af..d33a4b8d1 100644 --- a/examples/salvo_example/service/Cargo.toml +++ b/examples/salvo_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-tokio-native-tls", diff --git a/examples/seaography_example/migration/Cargo.toml b/examples/seaography_example/migration/Cargo.toml index f0692f5fd..9a1e6ad41 100644 --- a/examples/seaography_example/migration/Cargo.toml +++ b/examples/seaography_example/migration/Cargo.toml @@ -15,11 +15,11 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ "runtime-async-std-native-tls", "sqlx-mysql", diff --git a/examples/tonic_example/entity/Cargo.toml b/examples/tonic_example/entity/Cargo.toml index 42a27adea..a3804a48d 100644 --- a/examples/tonic_example/entity/Cargo.toml +++ b/examples/tonic_example/entity/Cargo.toml @@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version diff --git a/examples/tonic_example/migration/Cargo.toml b/examples/tonic_example/migration/Cargo.toml index 6f265da7a..4bcb0ae9e 100644 --- a/examples/tonic_example/migration/Cargo.toml +++ b/examples/tonic_example/migration/Cargo.toml @@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] } [dependencies.sea-orm-migration] path = "../../../sea-orm-migration" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm-migration version +version = "~1.1.0-rc.2" # sea-orm-migration version features = [ # Enable following runtime and db backend features if you want to run migration via CLI # "runtime-tokio-rustls", diff --git a/examples/tonic_example/service/Cargo.toml b/examples/tonic_example/service/Cargo.toml index 759cfb1aa..3f60cc94a 100644 --- a/examples/tonic_example/service/Cargo.toml +++ b/examples/tonic_example/service/Cargo.toml @@ -10,7 +10,7 @@ entity = { path = "../entity" } [dependencies.sea-orm] path = "../../../" # remove this line in your own project -version = "~1.1.0-rc.1" # sea-orm version +version = "~1.1.0-rc.2" # sea-orm version features = [ "debug-print", "runtime-tokio-rustls",