Files
wasmtime/misc/wasmtime-rust/Cargo.toml
Yury Delendik 3a8c2bbb82 Adds WASI support to markdown rust example. (#509)
* Adds WASI support to markdown rust example.

* Rename has_wasi -> find_wasi_module_name
2019-11-08 07:57:53 -06:00

22 lines
598 B
TOML

[package]
name = "wasmtime-rust"
version = "0.2.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2018"
categories = ["wasm", "rust"]
license = "Apache-2.0 WITH LLVM-exception"
description = "Rust extension for Wasmtime"
[lib]
test = false
doctest = false
[dependencies]
cranelift-codegen = { version = "0.49" }
cranelift-native = { version = "0.49" }
wasmtime-interface-types = { path = "../../wasmtime-interface-types" }
wasmtime-jit = { path = "../../wasmtime-jit" }
wasmtime-rust-macro = { path = "./macro" }
wasmtime-wasi = { path = "../../wasmtime-wasi" }
anyhow = "1.0.19"