From 95a11a4d8a65d5363165f817aa5c78dea038b95c Mon Sep 17 00:00:00 2001 From: Karthik Ganeshram Date: Tue, 2 Apr 2024 10:10:47 -0700 Subject: [PATCH] bump spin_sdk dep versions in example and template (#12) Signed-off-by: karthik2804 --- guest-rust/Cargo.lock | 9 +++++---- guest-rust/Cargo.toml | 2 +- templates/cron-rust/content/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/guest-rust/Cargo.lock b/guest-rust/Cargo.lock index a68a281..0269632 100644 --- a/guest-rust/Cargo.lock +++ b/guest-rust/Cargo.lock @@ -392,9 +392,9 @@ dependencies = [ [[package]] name = "spin-macro" -version = "3.0.0" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a161ae2fefde8582ef555ead81d87cf897cd31a23a1d1e0c22a9c43fd9af421a" +checksum = "ef3d03e5a205a641d85ace3af1604b39dba63d3ffe3865a71bda02fb482ae60a" dependencies = [ "anyhow", "bytes", @@ -405,9 +405,9 @@ dependencies = [ [[package]] name = "spin-sdk" -version = "3.0.0" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2c02cf00c243c03fb330cb5be7bf4eb3c8db7c5476425068c7385ddff1567aa" +checksum = "ed97f54a15f2d8b1fa15e436d88bacb95a5b379a3e0f8fbd8042eb8696ca048a" dependencies = [ "anyhow", "async-trait", @@ -419,6 +419,7 @@ dependencies = [ "routefinder", "serde", "serde_json", + "spin-executor", "spin-macro", "thiserror", "wit-bindgen", diff --git a/guest-rust/Cargo.toml b/guest-rust/Cargo.toml index 7985cdf..aaa67a6 100644 --- a/guest-rust/Cargo.toml +++ b/guest-rust/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.71" crate-type = ["cdylib"] [dependencies] -spin-sdk = "3.0.0" +spin-sdk = "3.0.1" spin-cron-sdk = { path = "../sdk" } [workspace] diff --git a/templates/cron-rust/content/Cargo.toml b/templates/cron-rust/content/Cargo.toml index e588e8c..cfa68b0 100644 --- a/templates/cron-rust/content/Cargo.toml +++ b/templates/cron-rust/content/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.71" crate-type = ["cdylib"] [dependencies] -spin-sdk = "3.0.0" +spin-sdk = "3.0.1" spin-cron-sdk = { git = "https://github.com/fermyon/spin-trigger-cron/" } [workspace]