Files
wasmtime/Cargo.toml
Jakub Konka e6cec049cb Add basic CI conf (#3)
* Add basic CI conf

* Pull in submodules in Rustfmt job

* Exclude WASI from workspace; fix name clash in memory crate

* Refactor CI conf
2020-02-03 09:59:09 +01:00

17 lines
296 B
TOML

[package]
name = "wiggle"
version = "0.1.0"
authors = ["Jakub Konka <kubkonk@jakubkonka.com>"]
edition = "2018"
[dependencies]
generate = { path = "crates/generate" }
memory = { path = "crates/memory" }
[workspace]
members = [
"crates/generate",
"crates/memory"
]
exclude = ["crates/WASI"]