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 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redisgraph use actor interfaces (#21)
* refactored provider to use actor interface * refactored wasccgraph_actor to use interfaces * revert to git dependency rather than path * moved wasccgraph-actor logic to interface * removed wascc_actor dependency * implemented conversions from redisgraph to common * updated types to actor-interface types * updated actor-graphdb dependency to git
- Loading branch information
1 parent
8c57582
commit 824d16c
Showing
20 changed files
with
205 additions
and
1,290 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,30 +1,29 @@ | ||
[package] | ||
name = "wasccgraph-redis" | ||
version = "0.1.0" | ||
name = "wasmcloud-redisgraph" | ||
version = "0.2.0" | ||
authors = ["Kevin Hoffman <[email protected]>"] | ||
edition = "2018" | ||
homepage = "https://wascc.dev" | ||
repository = "https://github.com/wascc/redisgraph" | ||
description = "RedisGraph implementation of the waSCC Graph Database capability provider contract" | ||
homepage = "https://wasmcloud.dev" | ||
repository = "https://github.com/wasmcloud/capability-providers" | ||
description = "RedisGraph implementation of the wasmCloud Graph Database capability provider contract" | ||
license = "Apache-2.0" | ||
documentation = "https://docs.rs/wasccgraph-redis" | ||
documentation = "https://docs.rs/wasmcloud-redisgraph" | ||
readme = "README.md" | ||
keywords = ["webassembly", "wasm", "graphdb", "graph", "wascc"] | ||
keywords = ["webassembly", "wasm", "graphdb", "graph", "wasmcloud"] | ||
categories = ["wasm", "api-bindings", "database"] | ||
|
||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# Enable if the provider will be statically compiled into a host | ||
static_plugin = [] | ||
|
||
|
||
[dependencies] | ||
wascc-codec = "0.7.0" | ||
log = "0.4.8" | ||
env_logger = "0.7.1" | ||
actor-graphdb = { git = "https://github.com/wasmCloud/actor-interfaces", branch = "main"} | ||
actor-core = { git = "https://github.com/wasmCloud/actor-interfaces", branch = "main"} | ||
wascc-codec = "0.9.0" | ||
log = "0.4.13" | ||
env_logger = "0.8.2" | ||
redis = "0.16.0" | ||
redisgraph = "0.5.0" | ||
wasccgraph-common = "0.0.2" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.