summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--README.md2
-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
8 files changed, 9 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2471bcc..e7504df 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -536,7 +536,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tinywasm"
-version = "0.0.1"
+version = "0.0.0"
dependencies = [
"log",
"tinywasm-parser",
@@ -557,7 +557,7 @@ dependencies = [
[[package]]
name = "tinywasm-parser"
-version = "0.0.1"
+version = "0.0.0"
dependencies = [
"log",
"tinywasm-types",
@@ -566,7 +566,7 @@ dependencies = [
[[package]]
name = "tinywasm-types"
-version = "0.0.1"
+version = "0.0.0"
dependencies = [
"log",
"rkyv",
diff --git a/README.md b/README.md
index a9022a5..65d41f6 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@
- **`logging`**\
Enables logging of the parsing process using the `log` crate. This is enabled by default.
- **`parser`**\
- Enables the `tinywasm_parser` crate. This is enabled by default.
+ Enables the `tinywasm-parser` crate. This is enabled by default.
# 🎯 Goals
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"