Skip to content

Commit b810a2e

Browse files
committed
update examples
1 parent 92ee3ef commit b810a2e

40 files changed

Lines changed: 41 additions & 41 deletions

File tree

examples/actix_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ serde = { version = "1", features = ["derive"] }
1414

1515
[dependencies.sea-orm]
1616
path = "../../../" # remove this line in your own project
17-
version = "~1.2.0-rc.1" # sea-orm version
17+
version = "~2.0.0-rc.1" # sea-orm version

examples/actix_example/migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.2.0-rc.1" # sea-orm-migration version
17+
version = "~2.0.0-rc.1" # sea-orm-migration version
1818
features = [
1919
# Enable following runtime and db backend features if you want to run migration via CLI
2020
# "runtime-actix-native-tls",

examples/actix_example/seeder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ migration = { path = "../migration" }
1515

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

examples/actix_example/service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ entity = { path = "../entity" }
1111

1212
[dependencies.sea-orm]
1313
path = "../../../" # remove this line in your own project
14-
version = "~1.2.0-rc.1" # sea-orm version
14+
version = "~2.0.0-rc.1" # sea-orm version
1515
features = [
1616
"debug-print",
1717
"runtime-async-std-native-tls",

examples/axum_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ serde = { version = "1", features = ["derive"] }
1414

1515
[dependencies.sea-orm]
1616
path = "../../../" # remove this line in your own project
17-
version = "~1.2.0-rc.1" # sea-orm version
17+
version = "~2.0.0-rc.1" # sea-orm version

examples/axum_example/migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.2.0-rc.1" # sea-orm-migration version
17+
version = "~2.0.0-rc.1" # 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/axum_example/seeder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ migration = { path = "../migration" }
1515

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

examples/axum_example/service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ entity = { path = "../entity" }
1111

1212
[dependencies.sea-orm]
1313
path = "../../../" # remove this line in your own project
14-
version = "~1.2.0-rc.1" # sea-orm version
14+
version = "~2.0.0-rc.1" # sea-orm version
1515
features = [
1616
"debug-print",
1717
"runtime-tokio-native-tls",

examples/graphql_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ version = "7.0"
1717

1818
[dependencies.sea-orm]
1919
path = "../../../" # remove this line in your own project
20-
version = "~1.2.0-rc.1" # sea-orm version
20+
version = "~2.0.0-rc.1" # sea-orm version

examples/graphql_example/migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async-std = { version = "1", features = ["attributes", "tokio1"] }
1515

1616
[dependencies.sea-orm-migration]
1717
path = "../../../sea-orm-migration" # remove this line in your own project
18-
version = "~1.2.0-rc.1" # sea-orm-migration version
18+
version = "~2.0.0-rc.1" # sea-orm-migration version
1919
features = [
2020
# Enable following runtime and db backend features if you want to run migration via CLI
2121
# "runtime-tokio-native-tls",

0 commit comments

Comments
 (0)