diff --git a/Cargo.lock b/Cargo.lock index f6017e5..387bf84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2997,9 +2997,9 @@ dependencies = [ [[package]] name = "sea-orm" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97b1218f3b8f95076954bde2e2a33852f873a91e5bbd49402f8fc2bb755c0ed3" +checksum = "8d6e979e57d507e4c9cd2da0f7047183c177db10cea176fb1f7fdc421e1f38fc" dependencies = [ "async-stream", "async-trait", @@ -3042,9 +3042,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7be16d30795cc707c355d1c0ba704db085d5bd507a858509a0d784189b8fe31b" +checksum = "748be5effdbe1e78873eb189757878b3d37b334ecc433eae06b300886f2e65d6" dependencies = [ "heck 0.4.1", "proc-macro2", @@ -3690,9 +3690,9 @@ checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "strum" -version = "0.25.0" +version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" [[package]] name = "subtle" diff --git a/Cargo.toml b/Cargo.toml index 4b9947d..2e2493a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ rand="0.8.5" rand_distr = "0.4.3" regex = "1.10.3" rpassword = "7.3.1" -sea-orm = { version = "1.0.0-rc.1", features = ["macros", "runtime-tokio-native-tls", "with-time"] } +sea-orm = { version = "1.0.0-rc.2", features = ["macros", "runtime-tokio-native-tls", "with-time"] } sea-query = { version = "0.31.0-rc.4", features = ["thread-safe", "with-time"] } serde = { version = "1.0.197", features = ["derive"] } thiserror = "1.0.58" diff --git a/entity/Cargo.toml b/entity/Cargo.toml index 37f76a7..e64d0aa 100644 --- a/entity/Cargo.toml +++ b/entity/Cargo.toml @@ -23,4 +23,4 @@ name = "entity" path = "src/mod.rs" [dependencies] -sea-orm = { version = "1.0.0-rc.1", default-features = false, features = ["with-time"] } +sea-orm = { version = "1.0.0-rc.2", default-features = false, features = ["with-time"] } diff --git a/service/Cargo.toml b/service/Cargo.toml index 2e681d7..9b5cc6f 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -34,5 +34,5 @@ sqlite = ["sea-orm/sqlx-sqlite"] entity = { path = "../entity" } migration = {path = "../migration" } ipnetwork = "0.20.0" -sea-orm = { version = "1.0.0-rc.1", features = ["debug-print", "runtime-tokio-native-tls"] } +sea-orm = { version = "1.0.0-rc.2", features = ["debug-print", "runtime-tokio-native-tls"] } tracing = { version = "0.1.40", features = ["async-await", "log"] }