Skip to content

Commit

Permalink
add dapr kv types for slightfile parsing
Browse files Browse the repository at this point in the history
Signed-off-by: David Justice <[email protected]>
  • Loading branch information
devigned committed Mar 31, 2023
1 parent 3bae385 commit 98c45cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/commands/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 98c45cd

Please sign in to comment.