Skip to content

Commit fc0baf4

Browse files
authored
Merge pull request #2390 from fermyon/allow-more-wasm
Allow `spin-expressions` and `spin-outbound-networking` to compile to wasm
2 parents c20d164 + 428a669 commit fc0baf4

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

Cargo.lock

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/expressions/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ anyhow = "1.0"
99
async-trait = "0.1"
1010
dotenvy = "0.15"
1111
once_cell = "1"
12-
spin-app = { path = "../app" }
12+
spin-locked-app = { path = "../locked-app" }
1313
thiserror = "1"
14-
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
15-
vaultrs = "0.6.2"
1614
serde = "1.0.188"
1715

1816
[dev-dependencies]
1917
toml = "0.5"
18+
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }

crates/expressions/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ mod template;
33

44
use std::{borrow::Cow, collections::HashMap, fmt::Debug};
55

6-
use spin_app::Variable;
6+
use spin_locked_app::Variable;
77

88
pub use provider::Provider;
99
use template::Part;

examples/spin-timer/Cargo.lock

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)