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 .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RUN set -ex; \
rm /tmp/cargo-binstall; \
cargo binstall -V

RUN cargo binstall [email protected].99 --locked \
RUN cargo binstall [email protected].100 --locked \
--no-discover-github-token \
--disable-telemetry \
--no-track \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
if: ${{ steps.check-artifact.outputs.exists != 'true' }}

- name: Install wasm-bindgen-cli
run: cargo binstall [email protected].99
run: cargo binstall [email protected].100
if: ${{ steps.check-artifact.outputs.exists != 'true' }}

- name: Install Binaryen
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
if: ${{ steps.check-artifact.outputs.exists != 'true' }}

- name: Install wasm-bindgen-cli
run: cargo binstall [email protected].99
run: cargo binstall [email protected].100
if: ${{ steps.check-artifact.outputs.exists != 'true' }}

- name: Install Binaryen
Expand Down
36 changes: 20 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ RUN --mount=type=secret,id=AWS \

RUN --mount=type=secret,id=AWS \
source /root/env; \
cargo binstall [email protected].99 [email protected] \
cargo binstall [email protected].100 [email protected] \
--locked \
--no-discover-github-token \
--disable-telemetry \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ this repository may be used on the following networks:
in terminal run `echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.zshrc` or `echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.bash_profile` depending on your default shell.
You can find your default shell with `echo $SHELL`
- Reload your shell with `source ~/.zshrc` or `source ~/.bash_profile`
- `cargo install [email protected].99`
- `cargo install [email protected].100`
- *double-check that wasm-bindgen-cli version above matches wasm-bindgen version in Cargo.lock file*
- *Depending on system, additional packages may need to be installed as a prerequisite for wasm-bindgen-cli. If anything is missing, installation will error and prompt what packages are missing (i.e. clang, llvm, libssl-dev)*
- essential build tools - example for Debian/Ubuntu: `apt install -y build-essential libssl-dev pkg-config clang cmake llvm`
Expand Down
4 changes: 2 additions & 2 deletions packages/wasm-dpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
# Meantime if you want to update wasm-bindgen you also need to update version in:
# - packages/wasm-dpp/scripts/build-wasm.sh
# - Dockerfile
wasm-bindgen = { version = "=0.2.99" }
wasm-bindgen = { version = "=0.2.100" }
js-sys = "0.3.53"
web-sys = { version = "0.3.6", features = ["console"] }
thiserror = { version = "1.0.63" }
Expand All @@ -40,7 +40,7 @@ dpp = { path = "../rs-dpp", default-features = false, features = [
"extended-document",
"document-value-conversion",
"document-json-conversion",
"system_contracts"
"system_contracts",
] }
itertools = { version = "0.13" }
log = { version = "0.4.6" }
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-dpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Library consumers must ignore class names minification for `@dashevo/wasm-dpp` l

- Install [Rust](https://www.rust-lang.org/tools/install) v1.73+
- Add wasm32 target: `$ rustup target add wasm32-unknown-unknown`
- Install wasm-bingen-cli: `cargo install [email protected].99`
- Install wasm-bingen-cli: `cargo install [email protected].100`
- *double-check that wasm-bindgen-cli version above matches wasm-bindgen version in Cargo.lock file*
- *Depending on system, additional packages may need to be installed as a prerequisite for wasm-bindgen-cli. If anything is missing, installation will error and prompt what packages are missing (i.e. clang, llvm, libssl-dev)*

Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ web-sys = { version = "0.3.4", features = [
'Node',
'Window',
] }
wasm-bindgen = { version = "=0.2.99" }
wasm-bindgen = { version = "=0.2.100" }
wasm-bindgen-futures = { version = "0.4.49" }
drive-proof-verifier = { path = "../rs-drive-proof-verifier" } # TODO: I think it's not needed (LKl)
# tonic = { version = "*", features = ["transport"], default-features = false }
Expand Down