mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 19:54:10 +03:00
e932f4cf47
**This PR also bumps wasmtime version from 0.38 to 2.0 as 0.38 does not build with Rust 1.75**. I did not test the plugin runtime as (AFAIK) we intend to deprecate it; also, wasmtime's most recent version is 16.0, so it'd make sense to bump the version at some point anyways. I did not bump the version to 16.0 straight away as that'd require code changes in `plugin_runtime`. Release Notes: - N/A
21 lines
400 B
TOML
21 lines
400 B
TOML
[package]
|
|
name = "plugin_runtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
wasmtime = "2.0"
|
|
wasmtime-wasi = "2.0"
|
|
wasi-common = "2.0"
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
bincode = "1.3"
|
|
pollster = "0.2.5"
|
|
smol.workspace = true
|
|
|
|
[build-dependencies]
|
|
wasmtime = { version = "2.0", features = ["all-arch"] }
|