Skip to content

Commit 29b7aa7

Browse files
committed
update examples
1 parent a8a05f4 commit 29b7aa7

File tree

36 files changed

+37
-37
lines changed

36 files changed

+37
-37
lines changed

examples/actix_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
16+
version = "~1.1.3" # sea-orm version

examples/actix_example/migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm-migration version
16+
version = "~1.1.3" # 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

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
13+
version = "~1.1.3" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"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
@@ -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.1.2" # sea-orm version
16+
version = "~1.1.3" # sea-orm version

examples/axum_example/migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm-migration version
16+
version = "~1.1.3" # 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

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
13+
version = "~1.1.3" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-tokio-native-tls",

examples/graphql_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
19+
version = "~1.1.3" # sea-orm version

examples/graphql_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.1.2" # sea-orm-migration version
17+
version = "~1.1.3" # 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

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
13+
version = "~1.1.3" # sea-orm version
1414
features = [
1515
"debug-print",
1616
"runtime-async-std-native-tls",

examples/jsonrpsee_example/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1.2" # sea-orm version
16+
version = "~1.1.3" # sea-orm version

0 commit comments

Comments
 (0)