diff --git a/Cargo.lock b/Cargo.lock index 8c34cbf..5e592b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,16 +36,15 @@ dependencies = [ [[package]] name = "actix-files" -version = "0.6.2" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d832782fac6ca7369a70c9ee9a20554623c5e51c76e190ad151780ebea1cf689" +checksum = "cc517050e349356239da19a5e100cd61c21658b3ae183b02c1c6799c581bddf3" dependencies = [ "actix-http", "actix-service", "actix-utils", "actix-web", - "askama_escape", - "bitflags 1.3.2", + "bitflags 2.3.2", "bytes", "derive_more", "futures-core", @@ -55,6 +54,7 @@ dependencies = [ "mime_guess", "percent-encoding", "pin-project-lite", + "v_htmlescape", ] [[package]] @@ -262,12 +262,6 @@ dependencies = [ "alloc-no-stdlib", ] -[[package]] -name = "askama_escape" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341" - [[package]] name = "autocfg" version = "1.1.0" @@ -1436,6 +1430,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +[[package]] +name = "v_htmlescape" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c" + [[package]] name = "version_check" version = "0.9.4" diff --git a/crates/figma-agent/Cargo.toml b/crates/figma-agent/Cargo.toml index a530a32..29c5351 100644 --- a/crates/figma-agent/Cargo.toml +++ b/crates/figma-agent/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] actix-cors = { version = "0.7.0", features = ["draft-private-network-access"] } -actix-files = "0.6.2" +actix-files = "0.6.4" actix-web = "4.4.1" env_logger = "0.10.1" figma-agent-fontconfig = { path = "../fontconfig" }