Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dapr key value implementation #374

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add dapr kv types for slightfile parsing
Signed-off-by: David Justice <david@devigned.com>
devigned committed Mar 31, 2023
commit 98c45cdbf36edf038658f8cd797fae017213ed9d
4 changes: 3 additions & 1 deletion src/commands/run.rs
Original file line number Diff line number Diff line change
@@ -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")]