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.
Http-server & Redis 0.15.0 Updates (#23)
* updated http-server to use wasmcloud:httpserver contract * modified redis provider to use actor interface * updated path dependencies to git, removed capability descriptors
- Loading branch information
1 parent
504335b
commit 20d6c7e
Showing
14 changed files
with
45 additions
and
1,037 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,13 +1,13 @@ | ||
[package] | ||
name = "wascc-httpsrv" | ||
version = "0.9.2" | ||
authors = ["Kevin Hoffman <[email protected]>"] | ||
name = "wasmcloud-httpserver" | ||
version = "0.10.0" | ||
authors = ["wasmCloud Team"] | ||
edition = "2018" | ||
homepage = "https://wascc.dev" | ||
repository = "https://github.com/wascc/http-server-provider" | ||
description = "HTTP Server capability provider for the waSCC wasm host runtime" | ||
homepage = "https://wasmcloud.dev" | ||
repository = "https://github.com/wasmcloud/capability-providers" | ||
description = "HTTP Server capability provider for the wasmCloud host runtime" | ||
license = "Apache-2.0" | ||
documentation = "https://docs.rs/wascc-httpsrv" | ||
documentation = "https://docs.rs/wasmcloud-httpserver" | ||
readme = "README.md" | ||
keywords = ["webassembly", "wasm", "wasi", "wascc", "actix"] | ||
categories = ["wasm", "api-bindings"] | ||
|
@@ -35,4 +35,5 @@ env_logger = "0.7.1" | |
crossbeam-channel = "0.4.2" | ||
crossbeam = "0.7.3" | ||
crossbeam-utils = "^0.7.0" | ||
|
||
actor-http-server = { 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
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.
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
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,15 +1,15 @@ | ||
[package] | ||
name = "wascc-redis" | ||
version = "0.9.2" | ||
authors = ["Kevin Hoffman <[email protected]>"] | ||
name = "wasmcloud-redis" | ||
version = "0.10.0" | ||
authors = ["wasmCloud Team"] | ||
edition = "2018" | ||
homepage = "https://wascc.dev" | ||
repository = "https://github.com/wascc/redis-provider" | ||
description = "Redis capability provider for the waSCC WebAssembly actor runtime" | ||
homepage = "https://wasmcloud.dev" | ||
repository = "https://github.com/wasmcloud/capability-providers" | ||
description = "Redis capability provider for the wasmCloud WebAssembly actor runtime" | ||
license = "Apache-2.0" | ||
documentation = "https://docs.rs/wascc-redis" | ||
documentation = "https://docs.rs/wasmcloud-redis" | ||
readme = "README.md" | ||
keywords = ["webassembly", "wasm", "keyvalue", "wascc", "redis"] | ||
keywords = ["webassembly", "wasm", "keyvalue", "wasmcloud", "redis"] | ||
categories = ["wasm", "api-bindings"] | ||
|
||
[badges] | ||
|
@@ -33,3 +33,5 @@ crossbeam-utils = "0.8.1" | |
log = "0.4.11" | ||
wascc-codec = "0.9.0" | ||
redis = "0.17.0" | ||
actor-core = { git = "https://github.com/wasmcloud/actor-interfaces", branch = "main" } | ||
actor-keyvalue = { git = "https://github.com/wasmcloud/actor-interfaces", branch = "main" } |
Oops, something went wrong.