diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-12-10 13:35:13 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-12-10 13:35:13 +0100 |
| commit | 52bebfac2e6a2dc934273e38230d3986e68a3fe3 (patch) | |
| tree | ad61563a281112266e8ab387261c6b2d35a40250 /crates/wasm-testsuite/Cargo.toml | |
| parent | 8eec592bba5279ec9213bfa1de816dc046748c0f (diff) | |
feat: move wasm core testsuite to a seperate crate
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/wasm-testsuite/Cargo.toml')
| -rw-r--r-- | crates/wasm-testsuite/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/wasm-testsuite/Cargo.toml b/crates/wasm-testsuite/Cargo.toml new file mode 100644 index 0000000..1145b3c --- /dev/null +++ b/crates/wasm-testsuite/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name="wasm-testsuite" +version="0.0.1" +description="Mirror of the WebAssembly core testsuite for use in testing WebAssembly implementations" +edition.workspace=true +license.workspace=true +authors.workspace=true +repository.workspace=true + +[lib] +path="lib.rs" + +[package.metadata.workspaces] +independent=true + +[dependencies] +rust-embed={version="8.1.0", features=["include-exclude"]} |
