diff --git a/Cargo.lock b/Cargo.lock index 4e0b5f7..7bd5614 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3438,9 +3438,9 @@ checksum = "2fde85c94a50dc789df8ca7b39f6b8b1eaa6cd320cc729e9ce1e1e1104292719" [[package]] name = "sea-orm" -version = "0.10.3" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8744afc95ca462de12c2cea5a56d7e406f3be2b2683d3b05066e1afdba898bc5" +checksum = "28fc9dad132e450d6320bd5953e70fb88b42785080b591e9be804da69bd8a170" dependencies = [ "async-stream", "async-trait", @@ -3481,9 +3481,9 @@ dependencies = [ [[package]] name = "sea-orm-macros" -version = "0.10.3" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ca4d01381fdcabc3818b6d39c5f1f0c885900af90da638e4001406907462784" +checksum = "66af5d33e04e56dafb2c700f9b1201a39e6c2c77b53ed9ee93244f21f8de6041" dependencies = [ "bae", "heck 0.3.3", diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index 602f8a1..308fc2a 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -27,7 +27,7 @@ poem-openapi = { version = "2.0.19", features = [ russh-keys = { version = "0.23.0-beta.1", features = ["openssl"] } # russh-keys = { version = "0.23.0-beta.1", features = ["openssl"], path = "../../russh/russh-keys" } rust-embed = "6.3" -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "runtime-tokio-native-tls", "macros", ], default-features = false } diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index 2a9bd1e..fd7f03d 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -26,7 +26,7 @@ poem-openapi = { version = "2.0.19", features = [ rand = "0.8" rand_chacha = "0.3" rand_core = { version = "0.6", features = ["std"] } -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "runtime-tokio-native-tls", "macros", ], default-features = false } diff --git a/warpgate-core/Cargo.toml b/warpgate-core/Cargo.toml index 7bf7a8e..bcf97bc 100644 --- a/warpgate-core/Cargo.toml +++ b/warpgate-core/Cargo.toml @@ -30,7 +30,7 @@ poem-openapi = { version = "2.0.19", features = [ rand = "0.8" rand_chacha = "0.3" rand_core = { version = "0.6", features = ["std"] } -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "runtime-tokio-native-tls", "macros", ], default-features = false } diff --git a/warpgate-db-entities/Cargo.toml b/warpgate-db-entities/Cargo.toml index 45c4522..5183654 100644 --- a/warpgate-db-entities/Cargo.toml +++ b/warpgate-db-entities/Cargo.toml @@ -7,7 +7,7 @@ version = "0.7.0" [dependencies] chrono = { version = "0.4", features = ["serde"] } poem-openapi = { version = "2.0.19", features = ["chrono", "uuid"] } -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "macros", "with-chrono", "with-uuid", diff --git a/warpgate-db-migrations/Cargo.toml b/warpgate-db-migrations/Cargo.toml index f1e0549..9f085d1 100644 --- a/warpgate-db-migrations/Cargo.toml +++ b/warpgate-db-migrations/Cargo.toml @@ -10,7 +10,7 @@ version = "0.7.0" [dependencies] async-std = { version = "^1.11", features = ["attributes"] } chrono = "0.4" -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "runtime-tokio-native-tls", "macros", "with-chrono", diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 67879b8..1e77b36 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -16,7 +16,7 @@ russh = { version = "0.35.0-beta.6", features = ["vendored-openssl"] } # russh = { version = "0.35.0-beta.6", features = ["vendored-openssl"], path = "../../russh/russh"} russh-keys = { version = "0.23.0-beta.1", features = ["vendored-openssl"] } # russh-keys = { version = "0.23.0-beta.1", features = ["vendored-openssl"], path = "../../russh/russh-keys" } -sea-orm = { version = "0.10.3", features = [ +sea-orm = { version = "0.10.5", features = [ "runtime-tokio-native-tls", ], default-features = false } thiserror = "1.0" diff --git a/warpgate/Cargo.toml b/warpgate/Cargo.toml index d30be65..e7a9dac 100644 --- a/warpgate/Cargo.toml +++ b/warpgate/Cargo.toml @@ -21,7 +21,7 @@ notify = "^5.0.0" rcgen = { version = "0.10", features = ["zeroize"] } serde_json = "1.0" serde_yaml = "0.8.23" -sea-orm = { version = "0.10.3", default-features = false } +sea-orm = { version = "0.10.5", default-features = false } time = "0.3" tokio = { version = "1.20", features = ["tracing", "signal", "macros"] } tracing = "0.1"