Skip to content

Commit 69e7526

Browse files
committed
Require that sim is no_std compatible
Signed-off-by: Denis Varlakov <denis@dfns.co>
1 parent 7c16331 commit 69e7526

File tree

2 files changed

+41
-25
lines changed

2 files changed

+41
-25
lines changed

wasm/no_std/Cargo.lock

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

wasm/no_std/Cargo.toml

+10-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

8-
[dependencies]
9-
random-generation-protocol = { path = "../../examples/random-generation-protocol" }
10-
round-based = { path = "../../round-based", default-features = false, features = ["state-machine", "derive"] }
8+
[dependencies.random-generation-protocol]
9+
path = "../../examples/random-generation-protocol"
10+
11+
[dependencies.round-based]
12+
path = "../../round-based"
13+
features = [
14+
"state-machine",
15+
"sim",
16+
"derive",
17+
]

0 commit comments

Comments
 (0)