Include READMEs in crates (#2987)

This commit is contained in:
Olivier Lemasle
2021-06-15 15:40:45 +02:00
committed by GitHub
parent 57375588f2
commit a7dad4e38f
5 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md" readme = "README.md"
edition = "2018" edition = "2018"
include = ["src/**/*", "WASI/phases/**/*", "LICENSE", "build.rs"] include = ["src/**/*", "WASI/phases/**/*", "README.md", "LICENSE", "build.rs"]
build = "build.rs" build = "build.rs"
# This doesn't actually link to a native library, but it allows us to set env # This doesn't actually link to a native library, but it allows us to set env

View File

@@ -9,7 +9,7 @@ keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md" readme = "README.md"
edition = "2018" edition = "2018"
include = ["src/**/*", "LICENSE" ] include = ["src/**/*", "README.md", "LICENSE" ]
[dependencies] [dependencies]
wasi-common = { path = "../", version = "0.28.0" } wasi-common = { path = "../", version = "0.28.0" }

View File

@@ -9,7 +9,7 @@ keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md" readme = "README.md"
edition = "2018" edition = "2018"
include = ["src/**/*", "LICENSE", "build.rs"] include = ["src/**/*", "README.md", "LICENSE", "build.rs"]
build = "build.rs" build = "build.rs"
[dependencies] [dependencies]

View File

@@ -8,7 +8,7 @@ description = "Runtime components of wiggle code generator"
categories = ["wasm"] categories = ["wasm"]
keywords = ["webassembly", "wasm"] keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"
include = ["src/**/*", "LICENSE"] include = ["src/**/*", "README.md", "LICENSE"]
[dependencies] [dependencies]
thiserror = "1" thiserror = "1"

View File

@@ -9,7 +9,7 @@ categories = ["wasm"]
keywords = ["webassembly", "wasm"] keywords = ["webassembly", "wasm"]
repository = "https://github.com/bytecodealliance/wasmtime" repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md" readme = "README.md"
include = ["src/**/*", "LICENSE"] include = ["src/**/*", "README.md", "LICENSE"]
[lib] [lib]