Skip to content

Commit d42b4ee

Browse files
authored
Merge pull request #17 from 6d4kqzym5h-star/feat/wasm32-unknown-unknown
feat: wasm32-unknown-unknown
2 parents 20c3a27 + e5e261b commit d42b4ee

9 files changed

Lines changed: 151 additions & 161 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane-quick-start"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]
@@ -25,11 +25,11 @@ resolver = "3"
2525
members = ["application", "bootstrap", "config", "plugin", "resources"]
2626

2727
[workspace.dependencies]
28-
hyperlane_application = { path = "application", version = "23.0.35" }
29-
hyperlane_bootstrap = { path = "bootstrap", version = "23.0.35" }
30-
hyperlane_config = { path = "config", version = "23.0.35" }
31-
hyperlane_plugin = { path = "plugin", version = "23.0.35" }
32-
hyperlane_resources = { path = "resources", version = "23.0.35" }
28+
hyperlane_application = { path = "application", version = "23.0.36" }
29+
hyperlane_bootstrap = { path = "bootstrap", version = "23.0.36" }
30+
hyperlane_config = { path = "config", version = "23.0.36" }
31+
hyperlane_plugin = { path = "plugin", version = "23.0.36" }
32+
hyperlane_resources = { path = "resources", version = "23.0.36" }
3333

3434
tracing = "0.1.44"
3535
hyperlane = "21.3.6"

application/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane_application"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

bootstrap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane_bootstrap"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane_config"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane_plugin"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

resources/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlane_resources"
3-
version = "23.0.35"
3+
version = "23.0.36"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

resources/docker/dev/server.dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ WORKDIR /hyperlane-quick-start
66

77
COPY . .
88

9+
RUN rustup target add wasm32-unknown-unknown
10+
911
RUN cargo install wasm-bindgen-cli --locked && \
1012
cargo install wasm-pack --locked
1113

resources/docker/release/server.dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ WORKDIR /hyperlane-quick-start
66

77
COPY . .
88

9+
RUN rustup target add wasm32-unknown-unknown
10+
911
RUN cargo install wasm-bindgen-cli --locked && \
1012
cargo install wasm-pack --locked
1113

0 commit comments

Comments
 (0)