Files
wasmtime/crates/misc/rust/Cargo.toml
Alex Crichton 787f50e107 Remove usage of Features from wasmtime::Config API (#763)
Instead expose a number of boolean accessors which doesn't require users
to construct a foreign `Features` type and allows us to decouple the API
of the `wasmtime` crate from the underlying implementation detail.
2020-01-06 17:34:48 -06:00

26 lines
652 B
TOML

[package]
name = "wasmtime-rust"
version = "0.7.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
description = "Rust extension for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["wasm"]
keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition = "2018"
[lib]
test = false
doctest = false
[dependencies]
wasmtime-interface-types = { path = "../../interface-types" }
wasmtime-rust-macro = { path = "./macro" }
wasmtime-wasi = { path = "../../wasi" }
wasmtime = { path = "../../api" }
anyhow = "1.0.19"
[badges]
maintenance = { status = "actively-developed" }