mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 05:38:00 +00:00
ca0a83ff91
Updates the requirements on [wasmparser](https://github.com/bytecodealliance/wasm-tools) to permit the latest version. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/94ad03bdb292549d6d699518343bad5639c05e8d"><code>94ad03b</code></a> Bump crate versions (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1145">#1145</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/dd6ddb31e9ffdc7cc04284a544a2738dc28e88c7"><code>dd6ddb3</code></a> Fix encoding of type information in wasm-compose (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1141">#1141</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/6f4508ab3b96515b44d842c6cac5879358e76fe4"><code>6f4508a</code></a> Move the wasm-tools CLI to the <code>src/bin</code> directory (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1144">#1144</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/c18d59fdfc906c0f9aae2f05318b6b890fc8d429"><code>c18d59f</code></a> Fix wit-component not removing dead type imports (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1143">#1143</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/69b5213dda658510f8c14c484520bd3a2619a8a9"><code>69b5213</code></a> Disallow empty types in the component model (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1142">#1142</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/23a2d6c56ec3698e809c7aad1806c5cd188dc658"><code>23a2d6c</code></a> Convert more things to links in the rustdoc documentation. (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1137">#1137</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/ac8d61669ee1188b4bbd09168fcb62944bcc55d1"><code>ac8d616</code></a> Fix the <code>Parser::parse</code> example to work with nested components (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1136">#1136</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/188de0fd412dd01dd41bf91c897935934282c13d"><code>188de0f</code></a> Fix a few typos in resolver (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1132">#1132</a>)</li> <li><a href="https://github.com/bytecodealliance/wasm-tools/commit/cea2220ebb4e45041ef8c3ab13c0a87add632714"><code>cea2220</code></a> Move component <code>value</code> support behind a feature flag (<a href="https://redirect.github.com/bytecodealliance/wasm-tools/issues/1131">#1131</a>)</li> <li>See full diff in <a href="https://github.com/bytecodealliance/wasm-tools/compare/wasmparser-0.109.0...wasmparser-0.110.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
1021 B
TOML
49 lines
1021 B
TOML
[package]
|
|
name = "wasm-instrument"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
rust-version = "1.56.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Instrument and transform wasm modules."
|
|
keywords = ["wasm", "webassembly", "blockchain", "gas-metering", "parity"]
|
|
categories = ["wasm", "no-std"]
|
|
repository = "https://github.com/paritytech/wasm-instrument"
|
|
include = ["src/**/*", "LICENSE-*", "README.md"]
|
|
|
|
[[bench]]
|
|
name = "instrumentation"
|
|
harness = false
|
|
path = "benches/instrumentation.rs"
|
|
|
|
[[bench]]
|
|
name = "execution"
|
|
harness = false
|
|
path = "benches/execution.rs"
|
|
|
|
[profile.bench]
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
parity-wasm = { version = "0.45", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
binaryen = "0.12"
|
|
criterion = "0.4"
|
|
diff = "0.1"
|
|
pretty_assertions = "1"
|
|
rand = "0.8"
|
|
wat = "1"
|
|
wasmparser = "0.110"
|
|
wasmprinter = "0.2"
|
|
wasmi = "0.31"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["parity-wasm/std"]
|
|
sign_ext = ["parity-wasm/sign_ext"]
|
|
|
|
[lib]
|
|
bench = false
|