forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Consolidate top-level markdown files * Make a top-level workspace project * Update dependencies to use `path` * Update repository/homepage urls
- Loading branch information
1 parent
dd3f340
commit a63da32
Showing
19 changed files
with
35 additions
and
928 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/target | ||
Cargo.lock |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "wasm-tools" | ||
version = "0.1.0" | ||
authors = ["The Wasmtime Project Developers"] | ||
edition = "2018" | ||
publish = false | ||
|
||
[workspace] | ||
|
||
[dependencies] | ||
wasmparser = { path = "crates/wasmparser" } | ||
wasmprinter = { path = "crates/wasmprinter" } | ||
wat = { path = "crates/wat" } | ||
|
||
[profile.release] | ||
debug-assertions = true | ||
overflow-checks = true |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ name = "wasmparser" | |
version = "0.55.0" | ||
authors = ["Yury Delendik <[email protected]>"] | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
repository = "https://github.com/bytecodealliance/wasmparser.rs" | ||
repository = "https://github.com/bytecodealliance/wasm-tools/tree/master/crates/wasmparser" | ||
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/master/crates/wasmparser" | ||
keywords = ["parser", "WebAssembly", "wasm"] | ||
description = """ | ||
A simple event-driven library for parsing WebAssembly binary files. | ||
""" | ||
exclude = ["fuzz/**/*", "tests/**/*", "testsuite/**/*"] | ||
edition = "2018" | ||
|
||
[dev-dependencies] | ||
|
@@ -27,12 +27,3 @@ travis-ci = { repository = "bytecodealliance/wasmparser.rs" } | |
# across any hardware. This feature is very critical for many Blockchain infrastructures | ||
# that rely on deterministic executions of smart contracts across different hardwares. | ||
deterministic = [] | ||
|
||
[[bench]] | ||
name = "benchmark" | ||
harness = false | ||
|
||
[[test]] | ||
name = "all" | ||
path = "tests/all.rs" | ||
harness = false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,33 +5,21 @@ authors = ["Alex Crichton <[email protected]>"] | |
edition = "2018" | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
repository = "https://github.com/bytecodealliance/wasmprinter" | ||
homepage = "https://github.com/bytecodealliance/wasmprinter" | ||
repository = "https://github.com/bytecodealliance/wasm-tools/tree/master/crates/wasmprinter" | ||
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/master/crates/wasmprinter" | ||
documentation = "https://docs.rs/wasmprinter" | ||
description = """ | ||
Rust converter from the WebAssembly binary format to the text format. | ||
""" | ||
exclude = ['tests/wabt'] | ||
|
||
[workspace] | ||
members = ['fuzz'] | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
wasmparser = "0.55.0" | ||
wasmparser = { path = '../wasmparser' } | ||
|
||
[dev-dependencies] | ||
diff = "0.1" | ||
getopts = "0.2" | ||
rayon = "1.0" | ||
tempfile = "3.0" | ||
wast = "17.0.0" | ||
wat = "1.0.8" | ||
|
||
[[test]] | ||
name = "wabt" | ||
harness = false | ||
|
||
[profile.release] | ||
debug-assertions = true | ||
overflow-checks = true | ||
wat = { path = "../wat" } | ||
wast = { path = "../wast" } |
Oops, something went wrong.