Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ watch --clear
-x clippy-dom
"""

wa-pack = "run --manifest-path dom/local-wasm-pack/Cargo.toml --"
wa-pack-build = "wa-pack build --target web --out-name index"
wa-pack = "run --release --manifest-path dom/local-wasm-pack/Cargo.toml --"
wa-pack-build = "wa-pack build --dev --target web --out-name index"
Comment thread
zetanumbers marked this conversation as resolved.
Outdated
wa-test = "wa-pack test --chrome --headless"

build-dom-lib = "wa-pack-build dom"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dyn-cache = { path = "dyn-cache", version = "0.12.0"}
futures = "0.3.5"
illicit = { path = "illicit", version = "1.1.1"}
moxie-macros = { path = "macros", version = "0.1.0-pre" }
parking_lot = "0.11"
parking_lot = { version = "0.11", features = ["wasm-bindgen"]}
scopeguard = "1"
topo = { path = "topo", version = "0.13.0"}
tracing = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion dyn-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ downcast-rs = "1.1.1"
hash_hasher = "2.0.3"
hashbrown = "0.9.0"
illicit = { path = "../illicit", version = "1.1.1"}
parking_lot = "0.11.0"
parking_lot = { version = "0.11.0", features = ["wasm-bindgen"]}
paste = "1.0.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion topo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2018"
dyn-cache = { path = "../dyn-cache", version = "0.12.0"}
illicit = { path = "../illicit", version = "1.1.1"}
once_cell = "1.4.0"
parking_lot = "0.11.0"
parking_lot = { version = "0.11.0", features = ["wasm-bindgen"]}
topo-macro = { path = "macro", version = "0.10.0"}

[dev-dependencies]
Expand Down