Skip to content

Commit 2dfeb76

Browse files
committed
macro gets a description, authors, keywords, categories
by moving the wstd ones to the workspace
1 parent 6b6fd85 commit 2dfeb76

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

Cargo.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ documentation = "https://docs.rs/wstd"
66
description = "An async standard library for Wasm Components and WASI 0.2"
77
readme = "README.md"
88
edition.workspace = true
9-
keywords = ["WebAssembly", "async", "stdlib", "Components"]
10-
categories = []
11-
authors = [
12-
"Yoshua Wuyts <[email protected]>",
13-
"Pat Hickey <[email protected]>",
14-
]
9+
authors.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1512

1613
[features]
1714

@@ -41,6 +38,12 @@ version = "0.5.0-draft1"
4138
edition = "2021"
4239
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
4340
repository = "https://github.com/yoshuawuyts/wstd"
41+
keywords = ["WebAssembly", "async", "stdlib", "Components"]
42+
categories = []
43+
authors = [
44+
"Yoshua Wuyts <[email protected]>",
45+
"Pat Hickey <[email protected]>",
46+
]
4447

4548
[workspace.dependencies]
4649
anyhow = "1"

macro/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name = "wstd-macro"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
6+
authors.workspace = true
7+
keywords.workspace = true
8+
categories.workspace = true
9+
description = "proc-macros for the wstd crate"
10+
documentation = "https://docs.rs/wstd-macro"
611

712
[lib]
813
proc-macro = true

0 commit comments

Comments
 (0)