File: Cargo.toml.orig

package info (click to toggle)
rust-wasmprinter 0.239.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 348 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 901 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "wasmprinter"
version.workspace = true
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition.workspace = true
license.workspace = true
readme = "README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter"
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmprinter"
documentation = "https://docs.rs/wasmprinter"
description = """
Rust converter from the WebAssembly binary format to the text format.
"""
rust-version.workspace = true

[lints]
workspace = true

[dependencies]
anyhow = { workspace = true }
termcolor = { workspace = true }
wasmparser = { workspace = true, features = ['std', 'simd'] }

[dev-dependencies]
wat = { path = "../wat" }

[features]
default = ['component-model', 'validate']
component-model = ['wasmparser/component-model']
validate = ['wasmparser/validate', 'wasmparser/features']