Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround IoVec upstream issue introduced by of Fetch implementation #110

Closed
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
5 changes: 5 additions & 0 deletions examples/counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ authors = ["Denis Kolodin <[email protected]>"]
[dependencies]
chrono = "0.4.0"
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/crm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ authors = ["Denis Kolodin <[email protected]>"]
serde = "1"
serde_derive = "1"
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/custom_components/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ authors = ["Denis Kolodin <[email protected]>"]

[dependencies]
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/dashboard/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ authors = ["Denis Kolodin <[email protected]>"]
serde = "1"
serde_derive = "1"
yew = { path = "../../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/game_of_life/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ authors = ["Diego Cardoso <[email protected]>"]
[dependencies]
yew = { path = "../.." }
rand = "0.4.1"

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/mount_point/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ authors = ["Ben Berman <[email protected]>"]
[dependencies]
yew = { path = "../.." }
stdweb = "0.3"

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/npm_and_rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ serde = "1"
serde_derive = "1"
yew = { path = "../.." }
stdweb = "0.3"

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/timer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ authors = ["Denis Kolodin <[email protected]>"]

[dependencies]
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/todomvc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ strum_macros = "0.8.0"
serde = "1"
serde_derive = "1"
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }
5 changes: 5 additions & 0 deletions examples/two_apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ authors = ["Denis Kolodin <[email protected]>"]
[dependencies]
stdweb = "0.3"
yew = { path = "../.." }

# Necessary until IoVec cuts a new release supporting Wasm
# More info: https://github.com/DenisKolodin/yew/issues/102
[replace]
"iovec:0.1.1" = { git = 'https://github.com/machineloop/iovec', branch = 'wasm-support' }