[package]
name = "wasmsign2-cli"
version = "0.1.5"
edition = "2021"
authors = ["Frank Denis <github@pureftpd.org>"]
description = "CLI tool to sign and verify WebAssembly modules"
readme = "README.md"
keywords = ["webassembly", "modules", "signatures"]
license = "MIT"
homepage = "https://github.com/wasm-signatures/design"
repository = "https://github.com/wasm-signatures/wasmsign2"
categories = ["cryptography", "wasm"]
[[bin]]
name = "wasmsign2"
path = "src/cli/main.rs"
[dependencies]
clap = { version = "3.0.12", default-features = false, features = [
"std",
"cargo",
"wrap_help",
] }
env_logger = { version = "0.9.0", default-features = false, features = [
"humantime",
] }
regex = "1.5.4"
ureq = "2.4.0"
uri_encode = "1.0.1"
wasmsign2 = { version = "0.1.11", path = "src/lib" }
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"