Skip to content

Commit

Permalink
prep for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Madoshakalaka committed Jan 8, 2022
1 parent b3938b8 commit eafa1f1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 45 deletions.
48 changes: 8 additions & 40 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 example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yew-interop = {path = "../yew-interop", features=["script", "yew-stable"]}
yew-interop = {path = "../yew-interop", features=["script"]}
yew = "0.19"
js-sys = "0.3"
wasm-bindgen = "0.2"
Expand Down
5 changes: 3 additions & 2 deletions yew-interop-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ syn = "1.0"
quote = "1.0"
proc-macro2 = "1.0"
itertools = "0.10"
yew-interop-core = "0.2"
# yew-interop-core = "0.2"
yew-interop-core = {path = "../yew-interop-core"}
url = "2.2"


Expand All @@ -26,4 +27,4 @@ script = []

[dev-dependencies]
yew = "0.19"
yew-interop = {path = "../yew-interop", features = ["yew-stable", "script"]}
yew-interop = {path = "../yew-interop", features = ["script"]}
6 changes: 4 additions & 2 deletions yew-interop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ categories = ["api-bindings", "asynchronous", "wasm", "web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yew-interop-macro = "0.3"
yew-interop-core = "0.2"
# yew-interop-macro = "0.3"
# yew-interop-core = "0.2"
yew-interop-macro = {path = "../yew-interop-macro"}
yew-interop-core = {path = "../yew-interop-core"}
yew = "0.19"
wasm-bindgen = {version="0.2", optional=true}
js-sys = {version="0.3", optional=true}
Expand Down

0 comments on commit eafa1f1

Please sign in to comment.