Files
wasmtime/Cargo.toml
Dan Gohman 5a5f4e4a2f Switch to published packages rather than straight git paths.
We can do this now that all our dependencies are available in published
form, and this should reduce accidental breakage which APIs change.
2018-02-28 12:33:37 -08:00

35 lines
816 B
TOML

[package]
name = "wasmstandalone_tools"
authors = ["The Cretonne Project Developers"]
version = "0.0.0"
description = "Command-line interface for the wasmstandalone crate"
license = "MIT/Apache-2.0"
documentation = "https://cretonne.readthedocs.io/"
repository = "https://github.com/sunfishcode/wasmstandalone"
publish = false
[[bin]]
name = "wasmstandalone"
path = "src/main.rs"
[[bin]]
name = "wasm2obj"
path = "src/wasm2obj.rs"
[dependencies]
cretonne = "0.3.0"
cretonne-frontend = "0.3.0"
cretonne-reader = "0.3.0"
cretonne-wasm = "0.3.0"
cretonne-native = "0.3.0"
wasmstandalone_runtime = { path = "lib/runtime" }
wasmstandalone_execute = { path = "lib/execute" }
wasmstandalone_obj = { path = "lib/obj" }
docopt = "0.8.3"
serde = "1.0.27"
serde_derive = "1.0.27"
tempdir = "*"
faerie = "0.1.0"
[workspace]