* 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
18 lines
383 B
TOML
18 lines
383 B
TOML
[package]
|
|
name = "wiggle-generate"
|
|
version = "0.1.0"
|
|
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
wiggle-runtime = { path = "../runtime" }
|
|
witx = { path = "../WASI/tools/witx" }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
heck = "0.3"
|
|
anyhow = "1"
|
|
syn = { version = "1.0", features = ["full"] }
|