[package] name = "wapm-toml" version = "0.4.0" description = "A parser for the wapm.toml format used by Wasmer and WAPM" edition = "2021" license = "MIT" authors = ["The Wasmer Engineering Team "] homepage = "https://wasmer.io/" repository = "https://github.com/wasmerio/wapm-toml" keywords = ["wasm", "wapm", "wasmer", "toml"] categories = ["parser-implementations", "wasm"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0", features = ["derive"] } anyhow = "1" toml = "0.5.6" thiserror = "1.0" semver = { version = "1.0", features = ["serde"] } serde_json = "1.0" serde_yaml = "0.9.0" serde_cbor = "0.11.2" [dev-dependencies] tempfile = "3.3.0"