Refactor naming and crates info (#8)
* Refactor naming and crates info This commit: * changes workspace crates to have a `wiggle_` prefix in names * rename `memory` module of `wiggle-memory` crate to `runtime` * fixes authors of all crates * Rename wiggle memory crate to runtime
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
[package]
|
||||
name = "wiggle"
|
||||
version = "0.1.0"
|
||||
authors = ["Jakub Konka <kubkonk@jakubkonka.com>"]
|
||||
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkonk@jakubkonka.com>"]
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
generate = { path = "crates/generate" }
|
||||
memory = { path = "crates/memory" }
|
||||
wiggle-generate = { path = "crates/generate" }
|
||||
wiggle-runtime = { path = "crates/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
proptest = "0.9"
|
||||
@@ -14,6 +14,6 @@ proptest = "0.9"
|
||||
[workspace]
|
||||
members = [
|
||||
"crates/generate",
|
||||
"crates/memory"
|
||||
"crates/runtime"
|
||||
]
|
||||
exclude = ["crates/WASI"]
|
||||
|
||||
Reference in New Issue
Block a user