* Add release notes for 3.0.1 * Update some version directives for crates in Wasmtime * Mark anything with `publish = false` as version 0.0.0 * Mark the icache coherence crate with the same version as Wasmtime * Fix manifest directives
16 lines
377 B
TOML
16 lines
377 B
TOML
[package]
|
|
name = "wasi-nn-example"
|
|
version = "0.0.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
wasi-nn = "0.1.0"
|
|
|
|
# This crate is built with the wasm32-wasi target, so it's separate
|
|
# from the main Wasmtime build, so use this directive to exclude it
|
|
# from the parent directory's workspace.
|
|
[workspace]
|