mirror of
https://github.com/extism/extism.git
synced 2026-01-08 21:38:13 -05:00
This PR adds the `kernel` directory which contains a port of the Extism memory allocator compiled to WebAssembly and removes `runtime/src/memory.rs` completely. Being able to re-use memory functions as a WASM module allows us to begin to experiment with porting Extism to new runtimes! This is in a draft state while I'm verifying some of these changes.
26 lines
544 B
TOML
26 lines
544 B
TOML
[package]
|
|
name = "extism-manifest"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
authors = ["The Extism Authors", "oss@extism.org"]
|
|
license = "BSD-3-Clause"
|
|
homepage = "https://extism.org"
|
|
repository = "https://github.com/extism/extism"
|
|
description = "Extism plug-in manifest crate"
|
|
|
|
[dependencies]
|
|
serde = {version = "1", features = ["derive"]}
|
|
base64 = "0.21.0"
|
|
schemars = {version = "0.8", optional=true}
|
|
|
|
[features]
|
|
json_schema = ["schemars"]
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
|
|
[[example]]
|
|
name = "json_schema"
|
|
required-features = ["json_schema"]
|
|
|