This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating in-memory keyvalue to wasmcloud:keyvalue contract (#11)
* replaced all references to wascc-codec::keyvalue to interface * addressed clippy warnings, removed unused variables
- Loading branch information
1 parent
62a041e
commit 7ad5bd6
Showing
4 changed files
with
123 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "keyvalue" | ||
version = "0.3.0" | ||
authors = ["Kevin Hoffman <[email protected]>"] | ||
name = "inmemory-keyvalue" | ||
version = "0.4.0" | ||
authors = ["wasmCloud Team"] | ||
edition = "2018" | ||
|
||
[lib] | ||
|
@@ -12,6 +12,8 @@ crate-type = ["cdylib", "rlib"] | |
static_plugin = [] | ||
|
||
[dependencies] | ||
wascc-codec = { version = "0.7.0", path = "../../wascc-codec" } | ||
wascc-codec = "0.9.0" | ||
log = "0.4.8" | ||
env_logger = "0.7.1" | ||
env_logger = "0.7.1" | ||
actor-keyvalue = { git = "https://github.com/wasmcloud/actor-interfaces", branch = "main"} | ||
actor-core = { git = "https://github.com/wasmcloud/actor-interfaces", branch = "main"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Key-Value Capability Provider | ||
|
||
This is a tutorial capability provider. It supplies an implementation for the `wascc:keyvalue` capability ID and can be used as a testing alternative for the **Redis** capability provider. The usual caveats should apply - this provider's data only lasts as long as the host runtime, so it should only be used for isolated testing and experimentation, and obviously won't provide distributed cached data in production. | ||
This is a tutorial capability provider. It supplies an implementation for the `wasmcloud:keyvalue` capability ID and can be used as a testing alternative for the **Redis** capability provider. The usual caveats should apply - this provider's data only lasts as long as the host runtime, so it should only be used for isolated testing and experimentation, and obviously won't provide distributed cached data in production. | ||
|
||
This provider was created using the `new-provider-template` cargo generation template as a starter. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.