Skip to content

Commit 4cda2b8

Browse files
committed
bump to 0.13.6, use remote runtime-v8 v0.13.3
1 parent 43c86a6 commit 4cda2b8

3 files changed

Lines changed: 23 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 4 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openworkers-runner"
3-
version = "0.13.5"
3+
version = "0.13.6"
44
edition = "2024"
55
license = "MIT"
66
default-run = "openworkers-runner"
@@ -63,7 +63,7 @@ openworkers-core = { git = "https://github.com/openworkers/openworkers-core", ta
6363
openworkers-transform = { git = "https://github.com/openworkers/openworkers-transform", tag = "v0.1.0" }
6464

6565
# Runtime backend (v8 only for now, others require older version of core)
66-
openworkers-runtime-v8 = { path = "../openworkers-runtime-v8", optional = true, features = ["ptrcomp"] }
66+
openworkers-runtime-v8 = { git = "https://github.com/openworkers/openworkers-runtime-v8", tag = "v0.13.3", optional = true, features = ["ptrcomp"] }
6767

6868
# WASM runtime (optional)
6969
# openworkers-runtime-wasm = { path = "../openworkers-runtime-wasm", optional = true }

Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.PHONY: test fmt check snapshot
2+
3+
# Run all runner tests
4+
test:
5+
cargo test --features v8
6+
7+
# Format code
8+
fmt:
9+
cargo fmt
10+
11+
# Check compilation
12+
check:
13+
cargo check --features v8
14+
15+
# Regenerate runtime snapshot
16+
snapshot:
17+
cargo run --features v8 --bin snapshot

0 commit comments

Comments
 (0)