b63cf8c9eb
- define versioned service and clock WIT contracts\n- enforce import allowlists, fuel, epoch, memory, I/O, and mailbox limits\n- keep one Store and Component Instance resident per serial Actor\n- add echo, counter, fault, spin, and capability probe components\n- cover lifecycle, concurrency, sandbox, and fault recovery behavior
34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"crates/wasmeld-package",
|
|
"crates/wasmeld-runtime",
|
|
"components/echo",
|
|
"components/counter",
|
|
"components/fault",
|
|
"components/spin",
|
|
"components/clock-probe",
|
|
"components/wasi-clock-probe",
|
|
]
|
|
default-members = ["crates/wasmeld-runtime"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
rust-version = "1.90"
|
|
license = "Apache-2.0"
|
|
|
|
[workspace.dependencies]
|
|
reqwest = { version = "0.13.4", default-features = false, features = ["blocking", "json", "multipart", "rustls"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
semver = "1.0.28"
|
|
sha2 = "0.10.9"
|
|
thiserror = "2.0.17"
|
|
toml = "0.9.8"
|
|
wasmtime = { version = "=41.0.0", default-features = false, features = ["component-model", "cranelift", "runtime", "std"] }
|
|
wasmtime-wasi = { version = "=41.0.0", default-features = false, features = ["p2"] }
|
|
wit-bindgen = "=0.41.0"
|
|
wit-component = "=0.243.0"
|
|
wit-parser = "0.243.0"
|
|
zip = { version = "2.4.2", default-features = false, features = ["deflate"] }
|