summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2023-12-09 15:04:24 +0100
committerHenry Gressmann <mail@henrygressmann.de>2023-12-09 15:04:24 +0100
commite866793a640f60b1ca9a6fc228dbcf2703aebaee (patch)
tree7318db8b2f237fa01af303adfb8af86eb25aa4b7 /crates
parent9a12b08bfc3ba59baed6885c1f778d2fbed3bdd0 (diff)
chore: prepare publish
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/cli/Cargo.toml1
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/parser/README.md2
-rw-r--r--crates/tinywasm/Cargo.toml2
-rw-r--r--crates/tinywasm/src/lib.rs2
-rw-r--r--crates/types/Cargo.toml2
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"