Skip to content

Commit 5546fda

Browse files
committed
Updated cargo descriptors
[skip ci]
1 parent f9c091c commit 5546fda

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

cargo-wasm2map/Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,21 @@ version = "0.1.0"
44
edition = "2021"
55
authors = ["Mark Tolmacs <[email protected]>"]
66
description = "Cargo command which generates source map for .wasm file with DWARF debug info embedded as source map."
7+
documentation = "https://docs.rs/cargo-wasm2map"
8+
readme = "https://github.com/mtolmacs/wasm2map/blob/main/README.md"
9+
repository = "https://github.com/mtolmacs/wasm2map"
10+
homepage = "https://github.com/mtolmacs/wasm2map"
11+
keywords = ["webassembly", "wasm", "debug", "sourcemap"]
12+
categories = ["command-line-utilities"]
13+
rust-version = "1.64.0"
14+
license = "MIT OR Apache-2.0"
715

816
[dependencies]
917
wasm2map = { version = "0.1.0", path = "../wasm2map" }
1018

1119
[dependencies.clap]
1220
version = "4.2.1"
1321
features = ["derive"]
22+
23+
[badges]
24+
maintenance = { status = "actively-developed" }

wasm2map/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ version = "0.1.0"
44
edition = "2021"
55
authors = ["Mark Tolmacs <[email protected]>"]
66
description = "Generates source map for .wasm file with DWARF debug info embedded as source map."
7+
documentation = "https://docs.rs/wasm2map"
8+
readme = "https://github.com/mtolmacs/wasm2map/blob/main/README.md"
9+
repository = "https://github.com/mtolmacs/wasm2map"
10+
homepage = "https://github.com/mtolmacs/wasm2map"
11+
keywords = ["webassembly", "wasm", "debug", "sourcemap"]
12+
categories = ["development-tools::debugging"]
13+
rust-version = "1.64.0"
14+
license = "MIT OR Apache-2.0"
715

816
[lib]
917

@@ -36,3 +44,5 @@ thiserror = ">= 1.0.7"
3644
# For -Zminimal-versions
3745
gcc = ">= 0.3.4"
3846

47+
[badges]
48+
maintenance = { status = "actively-developed" }

0 commit comments

Comments
 (0)