1.0.0-rc.1
This commit is contained in:
parent
94403b5659
commit
42553b6624
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
||||
|
||||
[package]
|
||||
name = "sea-orm"
|
||||
version = "0.12.12"
|
||||
version = "1.0.0-rc.1"
|
||||
authors = ["Chris Tsang <chris.2y3@outlook.com>"]
|
||||
edition = "2021"
|
||||
description = "🐚 An async & dynamic ORM for Rust"
|
||||
@ -33,7 +33,7 @@ log = { version = "0.4", default-features = false }
|
||||
tracing = { version = "0.1", default-features = false, features = ["attributes", "log"] }
|
||||
rust_decimal = { version = "1", default-features = false, optional = true }
|
||||
bigdecimal = { version = "0.3", default-features = false, optional = true }
|
||||
sea-orm-macros = { version = "0.12.12", path = "sea-orm-macros", default-features = false, features = ["strum"] }
|
||||
sea-orm-macros = { version = "1.0.0-rc.1", path = "sea-orm-macros", default-features = false, features = ["strum"] }
|
||||
sea-query = { version = "0.31.0-rc.3", default-features = false, features = ["thread-safe", "hashable-value", "backend-mysql", "backend-postgres", "backend-sqlite"] }
|
||||
sea-query-binder = { version = "0.6.0-rc.1", default-features = false, optional = true }
|
||||
strum = { version = "0.25", default-features = false }
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
[package]
|
||||
name = "sea-orm-cli"
|
||||
version = "0.12.12"
|
||||
version = "1.0.0-rc.1"
|
||||
authors = [
|
||||
"Chris Tsang <chris.2y3@outlook.com>",
|
||||
"Billy Chan <ccw.billy.123@gmail.com>",
|
||||
@ -37,7 +37,7 @@ required-features = ["cli", "codegen"]
|
||||
clap = { version = "4.3", features = ["env", "derive"], optional = true }
|
||||
dotenvy = { version = "0.15", default-features = false, optional = true }
|
||||
async-std = { version = "1.9", default-features = false, features = ["attributes", "tokio1"], optional = true }
|
||||
sea-orm-codegen = { version = "=0.12.12", path = "../sea-orm-codegen", default-features = false, optional = true }
|
||||
sea-orm-codegen = { version = "=1.0.0-rc.1", path = "../sea-orm-codegen", default-features = false, optional = true }
|
||||
sea-schema = { version = "0.15.0-rc.1" }
|
||||
sqlx = { version = "0.7", default-features = false, features = ["mysql", "postgres"], optional = true }
|
||||
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sea-orm-codegen"
|
||||
version = "0.12.12"
|
||||
version = "1.0.0-rc.1"
|
||||
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Code Generator for SeaORM"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sea-orm-macros"
|
||||
version = "0.12.12"
|
||||
version = "1.0.0-rc.1"
|
||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||
edition = "2021"
|
||||
description = "Derive macros for SeaORM"
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
[package]
|
||||
name = "sea-orm-migration"
|
||||
version = "0.12.12"
|
||||
version = "1.0.0-rc.1"
|
||||
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Migration utility for SeaORM"
|
||||
@ -23,8 +23,8 @@ path = "src/lib.rs"
|
||||
async-trait = { version = "0.1", default-features = false }
|
||||
clap = { version = "4.3", features = ["env", "derive"], optional = true }
|
||||
dotenvy = { version = "0.15", default-features = false, optional = true }
|
||||
sea-orm = { version = "0.12.12", path = "../", default-features = false, features = ["macros"] }
|
||||
sea-orm-cli = { version = "0.12.12", path = "../sea-orm-cli", default-features = false, optional = true }
|
||||
sea-orm = { version = "1.0.0-rc.1", path = "../", default-features = false, features = ["macros"] }
|
||||
sea-orm-cli = { version = "1.0.0-rc.1", path = "../sea-orm-cli", default-features = false, optional = true }
|
||||
sea-schema = { version = "0.15.0-rc.1" }
|
||||
tracing = { version = "0.1", default-features = false, features = ["log"] }
|
||||
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["env-filter", "fmt"] }
|
||||
|
Loading…
x
Reference in New Issue
Block a user