# 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.80" name = "tinywasm" version = "0.8.0" authors = ["Henry Gressmann "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A tiny WebAssembly interpreter" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/explodingcamera/tinywasm" [lib] name = "tinywasm" path = "src/lib.rs" [[test]] name = "test-wasm-1" path = "tests/test-wasm-1.rs" test = false harness = false [[test]] name = "test-wasm-2" path = "tests/test-wasm-2.rs" test = false harness = false [[test]] name = "test-wasm-annotations" path = "tests/test-wasm-annotations.rs" test = false harness = false [[test]] name = "test-wasm-extended-const" path = "tests/test-wasm-extended-const.rs" test = false harness = false [[test]] name = "test-wasm-memory64" path = "tests/test-wasm-memory64.rs" test = false harness = false [[test]] name = "test-wasm-multi-memory" path = "tests/test-wasm-multi-memory.rs" test = false harness = false [[test]] name = "test-wasm-simd" path = "tests/test-wasm-simd.rs" test = false harness = false [[test]] name = "test-wast" path = "tests/test-wast.rs" test = false harness = false [[bench]] name = "argon2id" path = "benches/argon2id.rs" harness = false [[bench]] name = "fibonacci" path = "benches/fibonacci.rs" harness = false [[bench]] name = "tinywasm" path = "benches/tinywasm.rs" harness = false [dependencies.libm] version = "0.2" default-features = false [dependencies.log] version = "0.4" optional = true [dependencies.tinywasm-parser] version = "0.8.0-alpha.0" optional = true default-features = false [dependencies.tinywasm-types] version = "0.8.0-alpha.0" default-features = false [dev-dependencies.criterion] version = "0.5" features = [ "cargo_bench_support", "rayon", ] default-features = false [dev-dependencies.eyre] version = "0.6" [dev-dependencies.owo-colors] version = "4.0" [dev-dependencies.pretty_env_logger] version = "0.5" [dev-dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.wast] version = "216" [features] archive = ["tinywasm-types/archive"] default = [ "std", "parser", "logging", "archive", ] logging = [ "log", "tinywasm-parser?/logging", "tinywasm-types/logging", ] nightly = ["tinywasm-parser?/nightly"] parser = ["tinywasm-parser"] simd = [] std = [ "tinywasm-parser?/std", "tinywasm-types/std", ]