Prepare for 0.10.0
This commit is contained in:
parent
f4634e55b3
commit
13b53369e2
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm"
|
name = "sea-orm"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "🐚 An async & dynamic ORM for Rust"
|
description = "🐚 An async & dynamic ORM for Rust"
|
||||||
@ -32,7 +32,7 @@ futures-util = { version = "^0.3" }
|
|||||||
log = { version = "^0.4" }
|
log = { version = "^0.4" }
|
||||||
tracing = { version = "^0.1", features = ["log"] }
|
tracing = { version = "^0.1", features = ["log"] }
|
||||||
rust_decimal = { version = "^1", optional = true }
|
rust_decimal = { version = "^1", optional = true }
|
||||||
sea-orm-macros = { version = "^0.9.2", path = "sea-orm-macros", optional = true }
|
sea-orm-macros = { version = "^0.10.0", path = "sea-orm-macros", optional = true }
|
||||||
sea-query = { version = "^0.26.3", features = ["thread-safe"] }
|
sea-query = { version = "^0.26.3", features = ["thread-safe"] }
|
||||||
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
|
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
|
@ -25,7 +25,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-async-std-native-tls",
|
"runtime-async-std-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-async-std-native-tls",
|
# "runtime-async-std-native-tls",
|
||||||
|
@ -25,7 +25,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-actix-native-tls",
|
"runtime-actix-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-actix-native-tls",
|
# "runtime-actix-native-tls",
|
||||||
|
@ -26,7 +26,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -19,7 +19,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
# "sqlx-postgres",
|
# "sqlx-postgres",
|
||||||
|
@ -16,4 +16,4 @@ version = "^4.0.6"
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -14,7 +14,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -23,7 +23,7 @@ simplelog = "*"
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -19,7 +19,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -29,7 +29,7 @@ path = "../../sea-orm-rocket/lib" # remove this line in your own project and use
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
"sqlx-postgres",
|
"sqlx-postgres",
|
||||||
|
@ -15,4 +15,4 @@ rocket = { version = "0.5.0-rc.1", features = [
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -14,7 +14,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -19,7 +19,7 @@ migration = { path = "migration" }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-tokio-native-tls",
|
"runtime-tokio-native-tls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-native-tls",
|
# "runtime-tokio-native-tls",
|
||||||
|
@ -19,7 +19,7 @@ serde = "1.0"
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../" # remove this line in your own project
|
path = "../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
features = [
|
features = [
|
||||||
"debug-print",
|
"debug-print",
|
||||||
"runtime-tokio-rustls",
|
"runtime-tokio-rustls",
|
||||||
|
@ -13,4 +13,4 @@ serde = { version = "1", features = ["derive"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
path = "../../../" # remove this line in your own project
|
path = "../../../" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm version
|
version = "^0.10.0" # sea-orm version
|
||||||
|
@ -13,7 +13,7 @@ async-std = { version = "^1", features = ["attributes", "tokio1"] }
|
|||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
path = "../../../sea-orm-migration" # remove this line in your own project
|
path = "../../../sea-orm-migration" # remove this line in your own project
|
||||||
version = "^0.9.2" # sea-orm-migration version
|
version = "^0.10.0" # sea-orm-migration version
|
||||||
features = [
|
features = [
|
||||||
# Enable following runtime and db backend features if you want to run migration via CLI
|
# Enable following runtime and db backend features if you want to run migration via CLI
|
||||||
# "runtime-tokio-rustls",
|
# "runtime-tokio-rustls",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm-cli"
|
name = "sea-orm-cli"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Command line utility for SeaORM"
|
description = "Command line utility for SeaORM"
|
||||||
@ -33,7 +33,7 @@ required-features = ["codegen"]
|
|||||||
clap = { version = "^3.2", features = ["env", "derive"] }
|
clap = { version = "^3.2", features = ["env", "derive"] }
|
||||||
dotenv = { version = "^0.15" }
|
dotenv = { version = "^0.15" }
|
||||||
async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] }
|
async-std = { version = "^1.9", features = [ "attributes", "tokio1" ] }
|
||||||
sea-orm-codegen = { version = "^0.9.2", path = "../sea-orm-codegen", optional = true }
|
sea-orm-codegen = { version = "^0.10.0", path = "../sea-orm-codegen", optional = true }
|
||||||
sea-schema = { version = "^0.9.3" }
|
sea-schema = { version = "^0.9.3" }
|
||||||
sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true }
|
sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "postgres" ], optional = true }
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sea-orm-codegen"
|
name = "sea-orm-codegen"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
|
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Code Generator for SeaORM"
|
description = "Code Generator for SeaORM"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sea-orm-macros"
|
name = "sea-orm-macros"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Derive macros for SeaORM"
|
description = "Derive macros for SeaORM"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm-migration"
|
name = "sea-orm-migration"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Migration utility for SeaORM"
|
description = "Migration utility for SeaORM"
|
||||||
@ -22,8 +22,8 @@ path = "src/lib.rs"
|
|||||||
async-trait = { version = "^0.1" }
|
async-trait = { version = "^0.1" }
|
||||||
clap = { version = "^3.2", features = ["env", "derive"] }
|
clap = { version = "^3.2", features = ["env", "derive"] }
|
||||||
dotenv = { version = "^0.15" }
|
dotenv = { version = "^0.15" }
|
||||||
sea-orm = { version = "^0.9.2", path = "../", default-features = false, features = ["macros"] }
|
sea-orm = { version = "^0.10.0", path = "../", default-features = false, features = ["macros"] }
|
||||||
sea-orm-cli = { version = "^0.9.2", path = "../sea-orm-cli", default-features = false }
|
sea-orm-cli = { version = "^0.10.0", path = "../sea-orm-cli", default-features = false }
|
||||||
sea-schema = { version = "^0.9.3" }
|
sea-schema = { version = "^0.9.3" }
|
||||||
tracing = { version = "0.1", features = ["log"] }
|
tracing = { version = "0.1", features = ["log"] }
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user