Skip to content

Commit 320c7ad

Browse files
committed
Publishing fixes, README improvements
1 parent 260d84f commit 320c7ad

File tree

8 files changed

+718
-607
lines changed

8 files changed

+718
-607
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@ jobs:
8181
export VERSION="${{ steps.get_version.outputs.version-without-v }}"
8282
sed -i "s/0.0.0/$VERSION/g" Cargo.toml
8383
cargo publish -p wasm-rquickjs --all-features --allow-dirty
84+
cargo publish -p wasm-rquickjs-cli --all-features --allow-dirty

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
name = "wasm-rquickjs-cli"
33
version.workspace = true
44
edition.workspace = true
5+
license.workspace = true
6+
homepage.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
59

610
[[bin]]
711
name = "wasm-rquickjs"
812
path = "src/main.rs"
913

1014
[dependencies]
11-
"wasm-rquickjs" = { path = "crates/wasm-rquickjs" }
15+
"wasm-rquickjs" = { path = "crates/wasm-rquickjs", version = "0.0.0" }
1216

1317
camino = { workspace = true }
1418
clap = { version = "4.5.39", features = ["default", "derive"] }
@@ -24,6 +28,11 @@ members = ["crates/wasm-rquickjs"]
2428
version = "0.0.0"
2529
edition = "2024"
2630

31+
license = "Apache-2.0"
32+
homepage = "https://github.com/golemcloud/wasm-rquickjs"
33+
repository = "https://github.com/golemcloud/wasm-rquickjs"
34+
description = "Tool for wrapping JavaScript modules as WebAssembly components using the QuickJS engine"
35+
2736
[workspace.dependencies]
2837
anyhow = "1.0.98"
2938
camino = "1.1.10"

0 commit comments

Comments
 (0)