Files
wasmtime/Cargo.toml

35 lines
810 B
TOML

[package]
name = "wasmtime_tools"
authors = ["The Cranelift Project Developers"]
version = "0.0.0"
description = "Command-line interface for the wasmtime crate"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
repository = "https://github.com/sunfishcode/wasmtime"
publish = false
[[bin]]
name = "wasmtime"
path = "src/main.rs"
[[bin]]
name = "wasm2obj"
path = "src/wasm2obj.rs"
[dependencies]
cranelift-codegen = "0.16.1"
cranelift-frontend = "0.16.1"
cranelift-reader = "0.16.1"
cranelift-wasm = "0.16.1"
cranelift-native = "0.16.1"
wasmtime_runtime = { path = "lib/runtime" }
wasmtime_execute = { path = "lib/execute" }
wasmtime_obj = { path = "lib/obj" }
docopt = "1.0.0"
serde = "1.0.55"
serde_derive = "1.0.55"
tempdir = "*"
faerie = "0.4.4"
[workspace]