-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (32 loc) · 878 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "wasmsign2-cli"
version = "0.2.6"
edition = "2021"
authors = ["Frank Denis <[email protected]>"]
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.2.25", default-features = false, features = [
"std",
"cargo",
"wrap_help",
] }
env_logger = { version = "0.11.5", default-features = false, features = [
"humantime",
] }
regex = "1.11.1"
ureq = "2.10.1"
uri_encode = "1.0.2"
wasmsign2 = { version = "0.2.6", path = "src/lib" }
[profile.release]
codegen-units = 1
incremental = false
panic = "abort"