From 8b2799fc4117c6bfacd77ad8dca0940771ab6529 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 23 Apr 2024 15:31:01 +0000
Subject: [PATCH] build(deps): update wasmtime requirement from >=16, <20 to
 >=16, <21

Updates the requirements on [wasmtime](https://github.com/bytecodealliance/wasmtime) to permit the latest version.
- [Release notes](https://github.com/bytecodealliance/wasmtime/releases)
- [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md)
- [Commits](https://github.com/bytecodealliance/wasmtime/compare/v16.0.0...v20.0.0)

---
updated-dependencies:
- dependency-name: wasmtime
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
---
 Cargo.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index af0d5e4..2c3ad90 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,7 @@ serde_json = "1.0.18" # This is the earliest version which supports 128-bit inte
 thiserror = "1"
 tokio = { version = "1.5", features = ["sync", "macros"] }
 tracing = "0.1.27"
-wasmtime = { version = ">=16, <20", default-features = false, features = ["async"] }
+wasmtime = { version = ">=16, <21", default-features = false, features = ["async"] }
 
 # Loader
 tokio-tar = { version = "0.3", optional = true }
@@ -53,7 +53,7 @@ version = "1.5"
 features = ["macros", "fs", "rt", "rt-multi-thread"]
 
 [dev-dependencies]
-wasmtime = { version = ">=16, <20", default-features = false, features = ["cranelift"] }
+wasmtime = { version = ">=16, <21", default-features = false, features = ["cranelift"] }
 insta = { version = "1", features = ["yaml"] }
 
 [build-dependencies]