Skip to content

Commit a4fdc8c

Browse files
committed
Upgrade dependancies
1 parent bce8a27 commit a4fdc8c

File tree

7 files changed

+233
-114
lines changed

7 files changed

+233
-114
lines changed

.DS_Store

6 KB
Binary file not shown.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "intersection-wasm"
3-
version = "1.2.1"
3+
version = "1.2.3"
44
authors = ["Bogdan Arabadzhi <bogdan.today@gmail.com>"]
55
edition = "2018"
66

@@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"]
1919
default = []
2020

2121
[dependencies]
22-
wasm-bindgen = "0.2.55"
22+
wasm-bindgen = "0.2.58"
2323

2424
# The `console_error_panic_hook` crate provides better debugging of panics by
2525
# logging them with `console.error`. This is great for development, but requires
@@ -28,7 +28,7 @@ wasm-bindgen = "0.2.55"
2828
console_error_panic_hook = { version = "0.1.6", optional = true }
2929

3030
[dev-dependencies]
31-
wasm-bindgen-test = "0.3.5"
31+
wasm-bindgen-test = "0.3.8"
3232

3333
[profile.release]
3434
lto = true

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 Bogdan Arabadzhi
1+
Copyright (c) 2019 - 2020 Bogdan Arabadzhi
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

build-wasm.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ wc -c pkg/intersection_wasm_bg.wasm
1818
# so might as well optimise for speed.
1919
# You might need to install wasm-opt from binaryen:
2020
# https://github.com/WebAssembly/binaryen/releases
21-
wasm-opt pkg/intersection_wasm_bg.wasm -O4 -o pkg/intersection_wasm_bg.wasm
21+
wasm-opt -O4 --strip-debug --strip-producers \
22+
pkg/intersection_wasm_bg.wasm -o pkg/intersection_wasm_bg.wasm
2223

2324
echo "Size after wasm-opt"
2425
wc -c pkg/intersection_wasm_bg.wasm

0 commit comments

Comments
 (0)