Skip to content

Commit

Permalink
Require that sim is no_std compatible
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Varlakov <[email protected]>
  • Loading branch information
survived committed Dec 3, 2024
1 parent 7c16331 commit 69e7526
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 25 deletions.
53 changes: 31 additions & 22 deletions wasm/no_std/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions wasm/no_std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ edition = "2021"

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

[dependencies]
random-generation-protocol = { path = "../../examples/random-generation-protocol" }
round-based = { path = "../../round-based", default-features = false, features = ["state-machine", "derive"] }
[dependencies.random-generation-protocol]
path = "../../examples/random-generation-protocol"

[dependencies.round-based]
path = "../../round-based"
features = [
"state-machine",
"sim",
"derive",
]

0 comments on commit 69e7526

Please sign in to comment.