* Add basic CI conf * Pull in submodules in Rustfmt job * Exclude WASI from workspace; fix name clash in memory crate * Refactor CI conf
17 lines
296 B
TOML
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"]
|