Skip to content

Commit ea000f9

Browse files
committed
Add Cargo metadata for remaining crates
1 parent b13def6 commit ea000f9

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name = "wit-bindgen-cli"
33
authors = ["Alex Crichton <[email protected]>"]
44
version = "0.3.0"
55
edition.workspace = true
6+
repository = 'https://github.com/bytecodealliance/wit-bindgen'
7+
license = "Apache-2.0 WITH LLVM-exception"
8+
homepage = 'https://github.com/bytecodealliance/wit-bindgen'
9+
description = """
10+
CLI tool to generate bindings for WIT documents and the component model.
11+
"""
612

713
[workspace]
814
members = [

crates/gen-markdown/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "wit-bindgen-gen-markdown"
33
version = "0.3.0"
44
edition.workspace = true
5+
repository = 'https://github.com/bytecodealliance/wit-bindgen'
6+
license = "Apache-2.0 WITH LLVM-exception"
7+
homepage = 'https://github.com/bytecodealliance/wit-bindgen'
8+
description = """
9+
Markdown generator for WIT and the component model, typically used
10+
through the `wit-bindgen-cli` crate.
11+
"""
512

613
[lib]
714
doctest = false

crates/guest-rust-macro/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name = "wit-bindgen-guest-rust-macro"
33
authors = ["Alex Crichton <[email protected]>"]
44
version = "0.3.0"
55
edition.workspace = true
6+
repository = 'https://github.com/bytecodealliance/wit-bindgen'
7+
license = "Apache-2.0 WITH LLVM-exception"
8+
homepage = 'https://github.com/bytecodealliance/wit-bindgen'
9+
description = """
10+
Procedural macro paired with the `wit-bindgen` crate.
11+
"""
612

713
[lib]
814
proc-macro = true

crates/guest-rust/Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ name = "wit-bindgen"
33
authors = ["Alex Crichton <[email protected]>"]
44
version = "0.3.0"
55
edition.workspace = true
6+
repository = 'https://github.com/bytecodealliance/wit-bindgen'
7+
license = "Apache-2.0 WITH LLVM-exception"
8+
homepage = 'https://github.com/bytecodealliance/wit-bindgen'
9+
description = """
10+
Rust bindings generator and runtime support for WIT and the component model.
11+
Used when compiling Rust programs to the component model.
12+
"""
613

714
[dependencies]
815
wit-bindgen-guest-rust-macro = { path = "../guest-rust-macro", optional = true }

0 commit comments

Comments
 (0)