From 98c45cdbf36edf038658f8cd797fae017213ed9d Mon Sep 17 00:00:00 2001 From: David Justice Date: Fri, 31 Mar 2023 15:00:02 -0400 Subject: [PATCH] add dapr kv types for slightfile parsing Signed-off-by: David Justice --- src/commands/run.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands/run.rs b/src/commands/run.rs index ea141616..069b7e1c 100644 --- a/src/commands/run.rs +++ b/src/commands/run.rs @@ -32,15 +32,17 @@ use wit_bindgen_wasmtime::wasmtime::Store; const BLOB_STORE_HOST_IMPLEMENTORS: [&str; 2] = [S3_CAPABILITY_NAME, AZBLOB_CAPABILITY_NAME]; #[cfg(feature = "keyvalue")] -const KEYVALUE_HOST_IMPLEMENTORS: [&str; 8] = [ +const KEYVALUE_HOST_IMPLEMENTORS: [&str; 10] = [ "kv.filesystem", "kv.azblob", "kv.awsdynamodb", "kv.redis", + "kv.dapr", "keyvalue.filesystem", "keyvalue.azblob", "keyvalue.awsdynamodb", "keyvalue.redis", + "keyvalue.dapr", ]; #[cfg(feature = "distributed-locking")]