cargo : wasmparser @ 0.244.0
Cargo.toml
162 lines · toml
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO## When uploading crates to the registry Cargo will automatically# "normalize" Cargo.toml files for maximal compatibility# with all versions of Cargo and also rewrite `path` dependencies# to registry (e.g., crates.io) dependencies.## If you are reading this file be aware that the original Cargo.toml# will likely look very different (and much more reasonable).# See Cargo.toml.orig for the original contents.[package]edition = "2021"rust-version = "1.81.0"name = "wasmparser"version = "0.244.0"authors = ["Yury Delendik <ydelendik@mozilla.com>"]build = falseexclude = ["benches/*.wasm"]autolib = falseautobins = falseautoexamples = falseautotests = falseautobenches = falsedescription = """A simple event-driven library for parsing WebAssembly binary files."""homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"readme = "README.md"keywords = [ "parser", "WebAssembly", "wasm",]license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser"[package.metadata.docs.rs]all-features = true[features]component-model = ["dep:semver"]default = [ "std", "validate", "serde", "features", "component-model", "hash-collections", "simd",]features = []hash-collections = [ "dep:hashbrown", "dep:indexmap",]prefer-btree-collections = []serde = [ "dep:serde", "indexmap?/serde", "hashbrown?/serde",]simd = []std = ["indexmap?/std"]validate = [][lib]name = "wasmparser"path = "src/lib.rs"[[example]]name = "simple"path = "examples/simple.rs"[[test]]name = "big-module"path = "tests/big-module.rs"[[bench]]name = "benchmark"path = "benches/benchmark.rs"harness = false[dependencies.bitflags]version = "2.4.1"[dependencies.hashbrown]version = "0.15.2"features = ["default-hasher"]optional = truedefault-features = false[dependencies.indexmap]version = "2.7.0"optional = truedefault-features = false[dependencies.semver]version = "1.0.0"optional = truedefault-features = false[dependencies.serde]version = "1.0.166"features = ["alloc"]optional = truedefault-features = false[dev-dependencies.anyhow]version = "1.0.58"[dev-dependencies.criterion]version = "0.5.1"default-features = false[dev-dependencies.env_logger]version = "0.11"[dev-dependencies.log]version = "0.4.17"[dev-dependencies.once_cell]version = "1.13.0"[dev-dependencies.rayon]version = "1.3"[lints.clippy]clone_on_copy = "warn"manual_strip = "warn"map_clone = "warn"uninlined_format_args = "warn"unnecessary_cast = "warn"unnecessary_fallible_conversions = "warn"unnecessary_mut_passed = "warn"unnecessary_to_owned = "warn"[lints.clippy.all]level = "allow"priority = -1[lints.rust]deprecated-safe-2024 = "warn"keyword_idents_2024 = "warn"missing-unsafe-on-extern = "warn"rust-2024-guarded-string-incompatible-syntax = "warn"rust-2024-incompatible-pat = "warn"rust-2024-prelude-collisions = "warn"unsafe-attr-outside-unsafe = "warn"unsafe-op-in-unsafe-fn = "warn"unsafe_code = "deny"unstable_features = "warn"unused-lifetimes = "warn"unused-macro-rules = "warn"unused_extern_crates = "warn"unused_import_braces = "warn"[lints.rust.unexpected_cfgs]level = "warn"priority = 0check-cfg = ["cfg(fuzzing)"]