Files
wasmtime/crates/misc/rust/Cargo.toml
Josh Triplett 08983bf39c Move crates/api to crates/wasmtime (#1693)
The `wasmtime` crate currently lives in `crates/api` for historical
reasons, because we once called it `wasmtime-api` crate. This creates a
stumbling block for new contributors.

As discussed on Zulip, rename the directory to `crates/wasmtime`.
2020-05-13 16:04:31 -05:00

25 lines
656 B
TOML

[package]
name = "wasmtime-rust"
version = "0.16.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-rust-macro = { path = "./macro", version = "0.16.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.16.0" }
wasmtime = { path = "../../wasmtime", version = "0.16.0" }
anyhow = "1.0.19"
[badges]
maintenance = { status = "actively-developed" }