Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CreateReleaseBranch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
git checkout -b release/${GITHUB_REF_NAME}
just make-vendor-tar
sed '/vendor.tar/d' ./src/hyperlight_wasm/.gitignore
sed -i '/vendor.tar/d' ./src/hyperlight_wasm/.gitignore
git add ./src/hyperlight_wasm/vendor.tar
git add ./src/hyperlight_wasm/.gitignore
git commit -m "Vendor dependencies for release ${GITHUB_REF_NAME}" -s -S
Expand Down
15 changes: 9 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,14 @@ members = [ "src/hyperlight_wasm", "src/examples_common", "src/hyperlight_wasm_a
exclude = [ "src/wasm_runtime", "src/rust_wasm_samples", "src/hyperlight_wasm_macro", "src/component_sample" ]
resolver = "2"

[workspace.package]
version = "0.7.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
homepage = "https://github.com/hyperlight-dev/hyperlight-wasm"
repository = "https://github.com/hyperlight-dev/hyperlight-wasm"
readme = "README.md"

[workspace.dependencies]
hyperlight-host = { version = "0.7.0", default-features = false, features = ["executable_heap", "init-paging"] }
16 changes: 10 additions & 6 deletions src/hyperlight_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[package]
name = "hyperlight-wasm"
version = "0.7.0"
edition = "2024"
rust-version = "1.85"
description = "Library that enables wasm modules and components to be run inside lightweight Virtual Machine backed Sandbox. It is built on top of Hyperlight."
license = "Apache-2.0"
repository = "https://github.com/hyperlight-dev/hyperlight-wasm"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
description = """
Library that enables wasm modules and components to be run inside lightweight Virtual Machine backed Sandbox. It is built on top of Hyperlight.
"""
include = [
"/src",
"/scripts",
Expand Down
12 changes: 10 additions & 2 deletions src/hyperlight_wasm_aot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "hyperlight-wasm-aot"
version = "0.7.0"
edition = "2024"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
description = """
Application to precompile WebAssembly binaries to for hyperlight-wasm.
"""

[dependencies]
wasmtime = { version = "34.0.1", default-features = false, features = ["cranelift", "runtime", "component-model" ] }
Expand Down