diff --git a/Cargo.lock b/Cargo.lock index 22f63ad..f397c12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1163,9 +1163,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "poem" -version = "3.1.5" +version = "3.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "671795ac42dc4ea9210e44942e8e9844c16541d799499aec2747ab8d4fef50ef" +checksum = "d32edf6781dc01de285cf2b1bd5dc5a3fd0d96aa5c4680e356c0462fab8f793a" dependencies = [ "anyhow", "bytes", @@ -1194,7 +1194,7 @@ dependencies = [ "smallvec", "sync_wrapper", "tempfile", - "thiserror 1.0.69", + "thiserror 2.0.9", "time", "tokio", "tokio-stream", @@ -1231,9 +1231,9 @@ dependencies = [ [[package]] name = "poem-openapi" -version = "5.1.4" +version = "5.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0d3c2262b16245f8bfc9b53fd6d7f8262251ecc8fa37db337bbf37b00eb18d7" +checksum = "fd2bcaa221d5d64e6830ba4aeaa95eb1421dbe0e5bf55e74509bdacc13a8a04d" dependencies = [ "base64 0.22.1", "bytes", @@ -1250,7 +1250,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "serde_yaml", - "thiserror 1.0.69", + "thiserror 2.0.9", "tokio", "uuid", ] diff --git a/Cargo.nix b/Cargo.nix index f0b9b5d..3db1451 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -3611,9 +3611,9 @@ rec { }; "poem" = rec { crateName = "poem"; - version = "3.1.5"; + version = "3.1.6"; edition = "2021"; - sha256 = "1vshxx7qvas74zn9ljcrsx0nbha4k272x5241qhsjknw8an9a5v7"; + sha256 = "0fkriymjyin0aviq0ijwmab0vzd3qmfvvcgjbhldw0fwh5kxybnk"; authors = [ "sunli " ]; @@ -3749,7 +3749,7 @@ rec { } { name = "thiserror"; - packageId = "thiserror 1.0.69"; + packageId = "thiserror 2.0.9"; } { name = "time"; @@ -3944,9 +3944,9 @@ rec { }; "poem-openapi" = rec { crateName = "poem-openapi"; - version = "5.1.4"; + version = "5.1.5"; edition = "2021"; - sha256 = "1mqqxc07pwxv6yrpv8wgrhg2aql2gxnzslwvzj5my90n5ckc5lxh"; + sha256 = "0kd0m09wrnlva1s5xxav1sz1shmibslyljms61l4xmnm46iclazx"; libName = "poem_openapi"; authors = [ "sunli " @@ -4018,7 +4018,7 @@ rec { } { name = "thiserror"; - packageId = "thiserror 1.0.69"; + packageId = "thiserror 2.0.9"; } { name = "tokio"; diff --git a/Cargo.toml b/Cargo.toml index aa02c20..8c91841 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,9 +17,9 @@ publish = false anyhow = { version = "1.0.95", default-features = false, features = ["std"] } config = { version = "0.15.4", default-features = false, features = ["toml", "json"] } key-rwlock = { version = "0.1.2", default-features = false } -poem = { version = "3.1.5", default-features = false, features = ["server", "anyhow"] } +poem = { version = "3.1.6", default-features = false, features = ["server", "anyhow"] } poem-ext = { version = "0.12.0", default-features = false, features = ["shield"] } -poem-openapi = { version = "5.1.4", default-features = false, features = ["swagger-ui", "redoc", "uuid"] } +poem-openapi = { version = "5.1.5", default-features = false, features = ["swagger-ui", "redoc", "uuid"] } postcard = { version = "1.1.1", default-features = false, features = ["use-std"] } prometheus = { version = "0.13.4", default-features = false } sandkasten-client = { path = "client", default-features = false, features = ["poem-openapi"] } diff --git a/client/Cargo.toml b/client/Cargo.toml index 34cde0b..1935573 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -16,7 +16,7 @@ blocking = ["reqwest", "reqwest/blocking"] poem-openapi = ["dep:poem-openapi"] [dependencies] -poem-openapi = { version = "5.1.4", default-features = false, optional = true, features = ["uuid"] } +poem-openapi = { version = "5.1.5", default-features = false, optional = true, features = ["uuid"] } reqwest = { version = "0.12.12", default-features = false, optional = true, features = ["json", "rustls-tls"] } serde.workspace = true serde_json.workspace = true