This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix wasm-pack build issue * update changelog * cargo.toml version changes * fix dependencies causing odd compile bug * fix minimal dependency
- Loading branch information
1 parent
4b9133d
commit f7dad13
Showing
8 changed files
with
55 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yew-router" | ||
version = "0.9.0" | ||
version = "0.8.1" | ||
authors = ["Henry Zimmerman <[email protected]>", "Sascha Grunert <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
@@ -28,16 +28,21 @@ service = ["stdweb", "yew"] # The RouteService | |
[dependencies] | ||
log = "0.4.8" | ||
serde = {version = "1.0.103", features = ["derive"]} | ||
#yew = {version = "0.11.0", optional = true} | ||
yew = {git = "https://github.com/yewstack/yew", branch = "master", optional = true} | ||
yew = {version = "0.11.0", optional = true} | ||
#yew = {git = "https://github.com/yewstack/yew", branch = "master", optional = true} | ||
stdweb = {version = "0.4.20", optional = true} | ||
|
||
yew-router-route-parser = {path = "crates/yew_router_route_parser", version = "0.9.0"} | ||
yew-router-macro = {path = "crates/yew_router_macro", version = "0.9.0"} | ||
yew-router-route-parser = {path = "crates/yew_router_route_parser", version = "0.8.0"} | ||
yew-router-macro = {path = "crates/yew_router_macro", version = "0.8.0"} | ||
nom = "5.0.1" | ||
uuid = "0.8.1" | ||
serde_json = "1.0.44" | ||
|
||
# Compat with building yew with wasm-pack support. | ||
[target.'cfg(all(target_arch = "wasm32", not(target_os="wasi"), not(cargo_web)))'.dependencies] | ||
wasm-bindgen = "0.2.58" | ||
|
||
[dev-dependencies] | ||
static_assertions = "1.1.0" | ||
|
||
|
||
[workspace] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yew-router-macro" | ||
version = "0.9.0" | ||
version = "0.8.0" | ||
authors = ["Henry Zimmerman <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
@@ -14,8 +14,8 @@ proc-macro = true | |
[dependencies] | ||
syn = "1.0.2" | ||
quote = "1.0.1" | ||
yew-router-route-parser = {path = "../yew_router_route_parser", version = "0.9.0"} | ||
yew-router-route-parser = {path = "../yew_router_route_parser", version = "0.8.0"} | ||
proc-macro2 = "1.0.1" | ||
|
||
[dev-dependencies] | ||
yew-router = {path = "../..", version = "0.9.0"} | ||
yew-router = {path = "../..", version = "0.8.1"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "yew-router-route-parser" | ||
version = "0.9.0" | ||
version = "0.8.0" | ||
authors = ["Henry Zimmerman <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ authors = ["Henry Zimmerman <[email protected]>"] | |
edition="2018" | ||
|
||
[dependencies] | ||
#yew = "0.11.0" | ||
yew = {git = "https://github.com/yewstack/yew", branch = "master"} | ||
yew = "0.11.0" | ||
#yew = {git = "https://github.com/yewstack/yew", branch = "master"} | ||
yew-router = {path = "../../"} | ||
web_logger = "0.2" | ||
log = "0.4.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters