Skip to content

Commit

Permalink
wip: switch to hc-wasmer fork with win32 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Aug 30, 2024
1 parent 63d9dd5 commit 44a8af5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
15 changes: 5 additions & 10 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion crates/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ wasmer = { version = "=4.3.6", optional = true, default-feature = false }
wasmer-middlewares = { version = "=4.3.6", optional = true, default-feature = false }

# Temporarily include a fork of wasmer from the git branch 'wamr', until it is officially released in wasmer v5
hc-wasmer = { version="=4.3.6-hc.1", optional = true, default-features = false }
#hc-wasmer = { version="=4.3.6-hc.1", optional = true, default-features = false }
hc-wasmer = { git = "https://github.com/holochain/wasmer", branch = "fix/win32-build", optional = true, default-features = false }

holochain_wasmer_common = { version = "=0.0.96", path = "../common" }
holochain_serialized_bytes = "=0.0.55"
Expand Down
15 changes: 5 additions & 10 deletions test/Cargo.lock

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

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

[dependencies]
holochain_wasmer_common = { path = "../crates/common" }
holochain_wasmer_host = { path = "../crates/host", default-features = false }
holochain_wasmer_host = { path = "../crates/host", default-features = false, features = ["error_as_host"] }
holochain_serialized_bytes = "=0.0.55"
serde = "1"
test_common = { path = "./common", default-features = false }
Expand All @@ -22,7 +22,8 @@ wasmer = { version = "=4.3.6", optional = true, default-features = false }
wasmer-middlewares = { version = "=4.3.6", optional = true, default-features = false }

# Temporarily include a fork of wasmer from the git branch 'wamr', until it is officially released in wasmer v5
hc-wasmer = { version="=4.3.6-hc.1", optional = true, default-features = false }
#hc-wasmer = { version="=4.3.6-hc.1", optional = true, default-features = false }
hc-wasmer = { git = "https://github.com/holochain/wasmer", branch = "fix/win32-build", optional = true, default-features = false }

[dev-dependencies]
env_logger = "0.8"
Expand Down

0 comments on commit 44a8af5

Please sign in to comment.