Browse Source
Merge pull request #525 from sunfishcode/cargo-keywords
Add a `keywords` field to Cargo.toml files.
pull/528/head
Nick Fitzgerald
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
5 additions and
0 deletions
-
Cargo.toml
-
crates/misc/py/Cargo.toml
-
crates/misc/rust/Cargo.toml
-
crates/wasi-c/Cargo.toml
-
crates/wasi/Cargo.toml
|
|
@ -6,6 +6,7 @@ description = "Command-line interface for Wasmtime" |
|
|
|
license = "Apache-2.0 WITH LLVM-exception" |
|
|
|
documentation = "https://cranelift.readthedocs.io/" |
|
|
|
categories = ["wasm"] |
|
|
|
keywords = ["webassembly", "wasm"] |
|
|
|
repository = "https://github.com/CraneStation/wasmtime" |
|
|
|
edition = "2018" |
|
|
|
default-run = "wasmtime" |
|
|
|
|
|
@ -5,6 +5,7 @@ authors = ["The Wasmtime Project Developers"] |
|
|
|
description = "Python extension for Wasmtime" |
|
|
|
license = "Apache-2.0 WITH LLVM-exception" |
|
|
|
categories = ["wasm", "python"] |
|
|
|
keywords = ["webassembly", "wasm"] |
|
|
|
edition = "2018" |
|
|
|
|
|
|
|
[lib] |
|
|
|
|
|
@ -4,6 +4,7 @@ version = "0.2.0" |
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"] |
|
|
|
edition = "2018" |
|
|
|
categories = ["wasm", "rust"] |
|
|
|
keywords = ["webassembly", "wasm"] |
|
|
|
license = "Apache-2.0 WITH LLVM-exception" |
|
|
|
description = "Rust extension for Wasmtime" |
|
|
|
|
|
|
|
|
|
@ -4,6 +4,7 @@ version = "0.2.0" |
|
|
|
authors = ["The Cranelift Project Developers"] |
|
|
|
description = "WASI API support for Wasmtime" |
|
|
|
categories = ["wasm"] |
|
|
|
keywords = ["webassembly", "wasm"] |
|
|
|
repository = "https://github.com/CraneStation/wasmtime" |
|
|
|
license = "Apache-2.0 WITH LLVM-exception" |
|
|
|
readme = "README.md" |
|
|
|
|
|
@ -4,6 +4,7 @@ version = "0.2.0" |
|
|
|
authors = ["The Cranelift Project Developers"] |
|
|
|
description = "WASI API support for Wasmtime" |
|
|
|
categories = ["wasm"] |
|
|
|
keywords = ["webassembly", "wasm"] |
|
|
|
repository = "https://github.com/CraneStation/wasmtime" |
|
|
|
license = "Apache-2.0 WITH LLVM-exception" |
|
|
|
readme = "README.md" |
|
|
|