Squashed and signed.

Signed-off-by: Suneet Nangia <suneetnangia@gmail.com>
This commit is contained in:
Suneet Nangia 2023-04-24 10:31:39 +01:00
parent d6be13890a
commit 88353baf57
No known key found for this signature in database
GPG Key ID: E9CB6C4D873F8D39
4 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,5 @@
# Installs latest stable toolchain for Rust and clippy/fmt for this toolchain
rustup update stable && rustup default stable && rustup component add clippy rustfmt
# Installs wasm32 compiler targets
rustup target add wasm32-wasi wasm32-unknown-unknown

View File

@ -38,7 +38,7 @@
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "rustup target add wasm32-wasi",
"postCreateCommand": "sh ./.devcontainer/bootstrap.sh",
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"

4
Cargo.lock generated
View File

@ -2129,9 +2129,9 @@ dependencies = [
[[package]]
name = "h2"
version = "0.3.16"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
dependencies = [
"bytes",
"fnv",

View File

@ -3481,6 +3481,18 @@ dependencies = [
"wit-bindgen-wasmtime",
]
[[package]]
name = "spin-key-value-redis"
version = "0.1.0"
dependencies = [
"anyhow",
"redis",
"spin-core",
"spin-key-value",
"tokio",
"url",
]
[[package]]
name = "spin-key-value-sqlite"
version = "0.1.0"
@ -3557,6 +3569,7 @@ dependencies = [
"spin-config",
"spin-core",
"spin-key-value",
"spin-key-value-redis",
"spin-key-value-sqlite",
"spin-loader",
"spin-manifest",