diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/cli/Cargo.toml | 1 | ||||
| -rw-r--r-- | crates/parser/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/parser/README.md | 2 | ||||
| -rw-r--r-- | crates/tinywasm/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/tinywasm/src/lib.rs | 2 | ||||
| -rw-r--r-- | crates/types/Cargo.toml | 2 |
6 files changed, 5 insertions, 6 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e9a6531..a4bd899 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -2,7 +2,6 @@ name="tinywasm-cli" version="0.0.0" edition="2021" -publish=false [[bin]] name="tinywasm-cli" diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 823e69b..17c5557 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name="tinywasm-parser" -version="0.0.1" +version="0.0.0" edition="2021" [dependencies] diff --git a/crates/parser/README.md b/crates/parser/README.md index 5772bb7..6cf2234 100644 --- a/crates/parser/README.md +++ b/crates/parser/README.md @@ -1,4 +1,4 @@ -# `tinywasm_parser` +# `tinywasm-parser` This crate provides a parser that can parse WebAssembly modules into a TinyWasm module. It is based on [`wasmparser_nostd`](https://crates.io/crates/wasmparser_nostd) and used by [`tinywasm`](https://crates.io/crates/tinywasm). diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml index d58a6e1..b5f2185 100644 --- a/crates/tinywasm/Cargo.toml +++ b/crates/tinywasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name="tinywasm" -version="0.0.1" +version="0.0.0" edition="2021" [lib] diff --git a/crates/tinywasm/src/lib.rs b/crates/tinywasm/src/lib.rs index 87d3923..616d2ab 100644 --- a/crates/tinywasm/src/lib.rs +++ b/crates/tinywasm/src/lib.rs @@ -48,7 +48,7 @@ mod runtime; pub use runtime::*; #[cfg(feature = "parser")] -/// Re-export of `tinywasm_parser`. Requires `parser` feature. +/// Re-export of [`tinywasm_parser`]. Requires `parser` feature. pub mod parser { pub use tinywasm_parser::*; } diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index e91a4f1..f3fc5fa 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name="tinywasm-types" -version="0.0.1" +version="0.0.0" edition="2021" readme="../../README.md" |
