Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from Wasmer to Wasmtime #3349

Merged
merged 10 commits into from
Jun 28, 2024
Prev Previous commit
Next Next commit
Disable some wasmtime features
  • Loading branch information
bjorn3 committed Jun 20, 2024
commit 884b0dab1ef1cb53bc4068c6d3c922cb2160b0e8
16 changes: 15 additions & 1 deletion zellij-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ daemonize = "0.5"
serde_json = "1.0"
unicode-width = "0.1.8"
url = "2.2.2"
wasmtime = "20.0.2"
wasmtime-wasi = "20.0.2"
cassowary = "0.3.0"
zellij-utils = { path = "../zellij-utils/", version = "0.41.0" }
Expand All @@ -34,6 +33,21 @@ arrayvec = "0.7.2"
uuid = { version = "1.4.1", features = ["serde", "v4"] }
semver = "0.11.0"

[dependencies.wasmtime]
version = "20.0.2"
default-features = false
features = [
'async',
'cache',
'parallel-compilation',
'cranelift',
'demangle',
'addr2line',
'debug-builtins',
'runtime',
'component-model',
]

[dev-dependencies]
insta = "1.6.0"
tempfile = "3.2.0"
Expand Down
Loading