Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Redisgraph use actor interfaces (#21)
Browse files Browse the repository at this point in the history
* 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
brooksmtownsend authored Feb 2, 2021
1 parent 8c57582 commit 824d16c
Show file tree
Hide file tree
Showing 20 changed files with 205 additions and 1,290 deletions.
25 changes: 12 additions & 13 deletions redisgraph/Cargo.toml
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"
2 changes: 0 additions & 2 deletions redisgraph/crates/common/.gitignore

This file was deleted.

20 changes: 0 additions & 20 deletions redisgraph/crates/common/Cargo.toml

This file was deleted.

201 changes: 0 additions & 201 deletions redisgraph/crates/common/LICENSE.txt

This file was deleted.

5 changes: 0 additions & 5 deletions redisgraph/crates/common/README.md

This file was deleted.

Loading

0 comments on commit 824d16c

Please sign in to comment.