* Adding in the foundations for Winch `filetests` This commit adds two new crates into the Winch workspace: `filetests` and `test-macros`. The intent is to mimic the structure of Cranelift `filetests`, but in a simpler way. * Updates to documentation This commits adds a high level document to outline how to test Winch through the `winch-tools` utility. It also updates some inline documentation which gets propagated to the CLI. * Updating test-macro to use a glob instead of only a flat directory
19 lines
425 B
TOML
19 lines
425 B
TOML
[package]
|
|
authors = ["The Winch Project Developers"]
|
|
name = "winch-test-macros"
|
|
description = "Winch test macros"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"]}
|
|
proc-macro2 = "1.0"
|
|
glob = { workspace = true }
|