From ef32d6e586cf86dc320d9b2ebb89ca88f9970233 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Wed, 13 Apr 2022 09:29:02 +0200 Subject: [PATCH] bumped poem - fixes #19 --- Cargo.lock | 17 +++++++++-------- warpgate-admin/Cargo.toml | 4 ++-- warpgate-common/Cargo.toml | 2 +- warpgate-db-entities/Cargo.toml | 2 +- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42e94b8..00ceccc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2327,9 +2327,9 @@ checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe" [[package]] name = "poem" -version = "1.3.14" +version = "1.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2ebe001b1703015f652398319527ec143dc5a309d1978305b0c6fb42c2a3b9e" +checksum = "2e69bd4623d873b286d4416e59c68db09c154c7776045c8308ad9fa27d5bd2dc" dependencies = [ "anyhow", "async-trait", @@ -2368,9 +2368,9 @@ dependencies = [ [[package]] name = "poem-derive" -version = "1.3.14" +version = "1.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93704c52afb1b1a37f80b173fbe5215409bf95651049fa28cb721ddac6a0acb6" +checksum = "97fa9095f688fbfdd9a974f19b51becec4e9ab1b8da99a0b6c3d362ee80b0d32" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2380,9 +2380,9 @@ dependencies = [ [[package]] name = "poem-openapi" -version = "1.3.14" +version = "1.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c87bf260e007b7bc53447a25367e60f21535816707e8201014dc233f64389a11" +checksum = "234d06e44e67006381bf9b9094ad0feeac3d2fea5d515bac9f59a21817c5150a" dependencies = [ "base64", "bytes", @@ -2396,6 +2396,7 @@ dependencies = [ "regex 1.5.5", "serde", "serde_json", + "serde_urlencoded", "thiserror", "tokio", "uuid", @@ -2403,9 +2404,9 @@ dependencies = [ [[package]] name = "poem-openapi-derive" -version = "1.3.14" +version = "1.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dd1f8a41e10d02a78f94e8dde68f3dde1f6b292db2e581d77980b63e3856f91" +checksum = "266910362564aade035a0b871c23e283c2a28fba74e7e7d10f2f0dffe0453a14" dependencies = [ "Inflector", "darling", diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index 87c346c..e7af4ed 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -12,8 +12,8 @@ chrono = "0.4" futures = "0.3" hex = "0.4" mime_guess = "2.0" -poem = {version = "1.3", features = ["cookie", "session", "anyhow", "rustls"]} -poem-openapi = {version = "1.3", features = ["swagger-ui", "chrono", "uuid", "static-files"]} +poem = {version = "^1.3.24", features = ["cookie", "session", "anyhow", "rustls"]} +poem-openapi = {version = "^1.3.24", features = ["swagger-ui", "chrono", "uuid", "static-files"]} russh-keys = {version = "0.22.0-beta.1", features = ["openssl"]} rust-embed = "6.3" sea-orm = {version = "^0.6", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"], default-features = false} diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index a4b5a84..55b2de3 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -14,7 +14,7 @@ data-encoding = "2.3" humantime-serde = "1.1" packet = "0.1" password-hash = "0.3" -poem-openapi = {version = "1.3", features = ["swagger-ui", "chrono", "uuid", "static-files"]} +poem-openapi = {version = "^1.3.24", features = ["swagger-ui", "chrono", "uuid", "static-files"]} rand = "0.8" rand_core = {version = "0.6", features = ["std"]} sea-orm = {version = "^0.6", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"], default-features = false} diff --git a/warpgate-db-entities/Cargo.toml b/warpgate-db-entities/Cargo.toml index a858b75..6258aae 100644 --- a/warpgate-db-entities/Cargo.toml +++ b/warpgate-db-entities/Cargo.toml @@ -6,7 +6,7 @@ version = "0.1.0" [dependencies] chrono = {version = "0.4", features = ["serde"]} -poem-openapi = {version = "1.3", features = ["chrono", "uuid"]} +poem-openapi = {version = "^1.3.24", features = ["chrono", "uuid"]} sea-orm = {version = "^0.6", features = ["macros", "with-chrono", "with-uuid"], default-features = false} serde = "1.0" uuid = {version = "0.8", features = ["v4", "serde"]}