tinywasm-types 0.9.0

Shared runtime, module, and archive types for TinyWasm
Documentation
# 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 = "2024"
rust-version = "1.95"
name = "tinywasm-types"
version = "0.9.0"
authors = ["Henry Gressmann <crates@henrygressmann.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared runtime, module, and archive types for TinyWasm"
readme = "README.md"
keywords = [
    "tinywasm",
    "wasm",
    "webassembly",
    "interpreter",
    "no-std",
]
categories = [
    "wasm",
    "no-std",
    "compilers",
    "virtualization",
    "embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/explodingcamera/tinywasm"
resolver = "2"

[features]
archive = [
    "dep:postcard",
    "dep:serde",
]
debug = []
default = [
    "std",
    "log",
    "archive",
    "debug",
]
log = ["dep:log"]
std = ["serde?/std"]

[lib]
name = "tinywasm_types"
path = "src/lib.rs"

[dependencies.log]
version = "0.4"
optional = true

[dependencies.postcard]
version = "1.1"
features = ["alloc"]
optional = true
default-features = false

[dependencies.serde]
version = "1.0"
features = [
    "alloc",
    "rc",
]
optional = true
default-features = false