diff --git a/examples/actix4_example/Cargo.toml b/examples/actix4_example/Cargo.toml index b03b7e857..6a4e12487 100644 --- a/examples/actix4_example/Cargo.toml +++ b/examples/actix4_example/Cargo.toml @@ -17,14 +17,15 @@ actix-web = "=4.0.0-beta.5" tera = "1.8.0" dotenv = "0.15" listenfd = "0.3.3" -# remove `path = ""` in your own project -sea-orm = { path = "../../", version = "^0.2.3", features = [ - "macros", - "runtime-actix-native-tls", -], default-features = false } serde = "1" env_logger = "0.8" +[dependencies.sea-orm] +path = "../../" # remove this line in your own project +version = "^0.3.0" +features = ["macros", "runtime-actix-native-tls"] +default-features = false + [features] default = ["sqlx-mysql"] sqlx-mysql = ["sea-orm/sqlx-mysql"] diff --git a/examples/actix_example/Cargo.toml b/examples/actix_example/Cargo.toml index 72e546a3d..964c3a417 100644 --- a/examples/actix_example/Cargo.toml +++ b/examples/actix_example/Cargo.toml @@ -17,14 +17,15 @@ futures-util = { version = "^0.3" } tera = "1.8.0" dotenv = "0.15" listenfd = "0.3.3" -# remove `path = ""` in your own project -sea-orm = { path = "../../", version = "^0.2.3", features = [ - "macros", - "runtime-async-std-native-tls", -], default-features = false } serde = "1" env_logger = "0.8" +[dependencies.sea-orm] +path = "../../" # remove this line in your own project +version = "^0.3.0" +features = ["macros", "runtime-async-std-native-tls"] +default-features = false + [features] default = ["sqlx-mysql"] sqlx-mysql = ["sea-orm/sqlx-mysql"] diff --git a/examples/rocket_example/Cargo.toml b/examples/rocket_example/Cargo.toml index c0834609b..e2af4d539 100644 --- a/examples/rocket_example/Cargo.toml +++ b/examples/rocket_example/Cargo.toml @@ -22,7 +22,7 @@ serde_json = { version = "^1" } [dependencies.sea-orm] path = "../../" # remove this line in your own project -version = "^0.2.3" +version = "^0.3.0" features = ["macros", "runtime-tokio-native-tls"] default-features = false