From 33365ad56cfe6f31a7b8d8bcdc6e67c3b0eb165d Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Mon, 11 Sep 2023 13:23:52 -0700 Subject: [PATCH] Increase actix requirement to 0.13.1 (#304) This appears to resolve a recently-introduced build error with the `actix::test` macro in the 0.13.0 release. --- sdk/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 3230be2..d0eaea5 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -138,4 +138,4 @@ anyhow = "1.0.40" wasm-bindgen-test = "0.3.31" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] -actix = "0.13.0" +actix = "0.13.1"