Updated sea-orm

This commit is contained in:
StNicolay 2023-08-03 23:11:28 +03:00
parent 7380140b7e
commit ab62e74cb7
Signed by: StNicolay
GPG Key ID: 9693D04DCD962B0D
5 changed files with 523 additions and 294 deletions

785
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@ migration = { version = "0.2", path = "migration" }
parking_lot = "0.12" parking_lot = "0.12"
pretty_env_logger = "0.5" pretty_env_logger = "0.5"
rustc-hash = "1" rustc-hash = "1"
sea-orm = { version = "0.11", features = [ sea-orm = { version = "0.12", features = [
"sqlx-mysql", "sqlx-mysql",
"runtime-tokio-rustls", "runtime-tokio-rustls",
] } ] }

View File

@ -6,18 +6,18 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
sha2 = "0.10.6" sha2 = "0.10"
scrypt = { version = "0.11.0", default-features = false, features = ["std"] } scrypt = { version = "0.11", default-features = false, features = ["std"] }
pbkdf2 = "0.12.1" pbkdf2 = "0.12"
thiserror = "1.0.40" thiserror = "1"
entity = { version = "0.1.0", path = "../entity" } entity = { version = "0.1", path = "../entity" }
chacha20poly1305 = { version = "0.10.1", features = ["std"] } chacha20poly1305 = { version = "0.10", features = ["std"] }
rand = { version = "0.8.5", default-features = false, features = [ rand = { version = "0.8", default-features = false, features = [
"std_rng", "std_rng",
"std", "std",
] } ] }
sea-orm = "0.11.3" sea-orm = "0.12"
bitflags = "2.3.1" bitflags = "2"
arrayvec = "0.7.2" arrayvec = "0.7"
subtle = "2.5.0" subtle = "2"
once_cell = "1.18.0" once_cell = "1"

View File

@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
futures = "0.3.28" futures = "0.3"
sea-orm = "0.11.3" sea-orm = "0.12"

View File

@ -4,6 +4,6 @@ version = "0.2.0"
edition = "2021" edition = "2021"
[dependencies.sea-orm-migration] [dependencies.sea-orm-migration]
version = "0.11.3" version = "0.12"
features = ["runtime-tokio-rustls", "sqlx-mysql"] features = ["runtime-tokio-rustls", "sqlx-mysql"]
default-features = false default-features = false