diff options
author | 2020-01-21 00:56:49 +0100 | |
---|---|---|
committer | 2020-01-21 00:56:49 +0100 | |
commit | 8957883a88ce98de3d37cdb1e658db5c6777ff1f (patch) | |
tree | f87a8f9113ff02402763ddfbd11415937b87e8d3 /examples | |
parent | 92af1b1c123983b94e38519943b6ad4fab3db9d7 (diff) | |
parent | 1ef7d09ce86cb54de35678ba22517df830660247 (diff) | |
download | iced-8957883a88ce98de3d37cdb1e658db5c6777ff1f.tar.gz iced-8957883a88ce98de3d37cdb1e658db5c6777ff1f.tar.bz2 iced-8957883a88ce98de3d37cdb1e658db5c6777ff1f.zip |
Merge branch 'feature/custom-runtime'
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pokedex/Cargo.toml | 2 | ||||
-rw-r--r-- | examples/tour/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/pokedex/Cargo.toml b/examples/pokedex/Cargo.toml index 2972590f..76a3a82f 100644 --- a/examples/pokedex/Cargo.toml +++ b/examples/pokedex/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -iced = { path = "../.." } +iced = { path = "../..", features = ["image"] } iced_futures = { path = "../../futures", features = ["async-std"] } surf = "1.0" rand = "0.7" diff --git a/examples/tour/Cargo.toml b/examples/tour/Cargo.toml index 7772df1b..45105c31 100644 --- a/examples/tour/Cargo.toml +++ b/examples/tour/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" publish = false [dependencies] -iced = { path = "../..", features = ["debug"] } +iced = { path = "../..", features = ["image", "debug"] } env_logger = "0.7" [target.'cfg(target_arch = "wasm32")'.dependencies] |