Skip to content

Commit ac6c85f

Browse files
committed
update examples
1 parent 987cb38 commit ac6c85f

File tree

32 files changed

+33
-33
lines changed

32 files changed

+33
-33
lines changed

examples/actix_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/actix_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-actix-native-tls",

examples/actix_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-async-std-native-tls",

examples/axum_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/axum_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-tokio-native-tls",

examples/axum_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-tokio-native-tls",

examples/graphql_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ version = "5.0.10"
1616

1717
[dependencies.sea-orm]
1818
path = "../../../" # remove this line in your own project
19-
version = "1.0.0-rc.4" # sea-orm version
19+
version = "1.0.0-rc.5" # sea-orm version

examples/graphql_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1414

1515
[dependencies.sea-orm-migration]
1616
path = "../../../sea-orm-migration" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm-migration version
17+
version = "1.0.0-rc.5" # sea-orm-migration version
1818
features = [
1919
# Enable following runtime and db backend features if you want to run migration via CLI
2020
# "runtime-tokio-native-tls",

examples/graphql_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-async-std-native-tls",

examples/jsonrpsee_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/jsonrpsee_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-tokio-native-tls",

examples/jsonrpsee_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-tokio-native-tls",

examples/loco_example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
2727

2828
[dependencies.sea-orm]
2929
path = "../../" # remove this line in your own project
30-
version = "1.0.0-rc.4" # sea-orm version
30+
version = "1.0.0-rc.5" # sea-orm version
3131
features = [
3232
"sqlx-sqlite",
3333
"sqlx-postgres",

examples/loco_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ loco-rs = { version = "0.4" }
1414

1515
[dependencies.sea-orm-migration]
1616
path = "../../../sea-orm-migration" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm-migration version
17+
version = "1.0.0-rc.5" # sea-orm-migration version
1818
features = [
1919
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
2020
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.

examples/loco_starter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
2828

2929
[dependencies.sea-orm]
3030
path = "../../" # remove this line in your own project
31-
version = "1.0.0-rc.4" # sea-orm version
31+
version = "1.0.0-rc.5" # sea-orm version
3232
features = [
3333
"sqlx-sqlite",
3434
"sqlx-postgres",

examples/loco_starter/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ loco-rs = { version = "0.4.0" }
1414

1515
[dependencies.sea-orm-migration]
1616
path = "../../../sea-orm-migration" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm-migration version
17+
version = "1.0.0-rc.5" # sea-orm-migration version
1818
features = [
1919
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
2020
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.

examples/poem_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/poem_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-tokio-native-tls",

examples/poem_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-async-std-native-tls",

examples/rocket_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ rocket = { version = "0.5.0", features = ["json"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/rocket_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1414

1515
[dependencies.sea-orm-migration]
1616
path = "../../../sea-orm-migration" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm-migration version
17+
version = "1.0.0-rc.5" # sea-orm-migration version
1818
features = [
1919
# Enable following runtime and db backend features if you want to run migration via CLI
2020
# "runtime-tokio-native-tls",

examples/rocket_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"runtime-tokio-native-tls",
1616
"sqlx-postgres",

examples/rocket_okapi_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rocket = { version = "0.5.0", features = ["json"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version
1717

1818
[dependencies.rocket_okapi]
1919
version = "0.8.0"

examples/rocket_okapi_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1414

1515
[dependencies.sea-orm-migration]
1616
path = "../../../sea-orm-migration" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm-migration version
17+
version = "1.0.0-rc.5" # sea-orm-migration version
1818
features = [
1919
# Enable following runtime and db backend features if you want to run migration via CLI
2020
# "runtime-tokio-native-tls",

examples/rocket_okapi_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"runtime-tokio-native-tls",
1616
# "sqlx-postgres",

examples/salvo_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ salvo = { version = "0.50" }
1414

1515
[dependencies.sea-orm]
1616
path = "../../../" # remove this line in your own project
17-
version = "1.0.0-rc.4" # sea-orm version
17+
version = "1.0.0-rc.5" # sea-orm version

examples/salvo_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-tokio-native-tls",

examples/salvo_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-tokio-native-tls",

examples/seaography_example/migration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1515

1616
[dependencies.sea-orm]
1717
path = "../../../" # remove this line in your own project
18-
version = "1.0.0-rc.4" # sea-orm version
18+
version = "1.0.0-rc.5" # sea-orm version
1919

2020
[dependencies.sea-orm-migration]
2121
path = "../../../sea-orm-migration" # remove this line in your own project
22-
version = "1.0.0-rc.4" # sea-orm-migration version
22+
version = "1.0.0-rc.5" # sea-orm-migration version
2323
features = [
2424
"runtime-async-std-native-tls",
2525
"sqlx-mysql",

examples/tonic_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
1313

1414
[dependencies.sea-orm]
1515
path = "../../../" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm version
16+
version = "1.0.0-rc.5" # sea-orm version

examples/tonic_example/migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1313

1414
[dependencies.sea-orm-migration]
1515
path = "../../../sea-orm-migration" # remove this line in your own project
16-
version = "1.0.0-rc.4" # sea-orm-migration version
16+
version = "1.0.0-rc.5" # sea-orm-migration version
1717
features = [
1818
# Enable following runtime and db backend features if you want to run migration via CLI
1919
# "runtime-tokio-rustls",

examples/tonic_example/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ entity = { path = "../entity" }
1010

1111
[dependencies.sea-orm]
1212
path = "../../../" # remove this line in your own project
13-
version = "1.0.0-rc.4" # sea-orm version
13+
version = "1.0.0-rc.5" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-tokio-rustls",

0 commit comments

Comments
 (0)