diff options
author | 2019-09-21 13:38:14 +0200 | |
---|---|---|
committer | 2019-09-21 13:38:14 +0200 | |
commit | 86dede4c4cc2bca9be7d2e6bd831daa98bd7043d (patch) | |
tree | 80c5a110be5a2cea664aa92b0463b1d5147fab07 /examples/tour/Cargo.toml | |
parent | eda1048dbcf5753dc6171c3ee1478ec44468d5e3 (diff) | |
download | iced-86dede4c4cc2bca9be7d2e6bd831daa98bd7043d.tar.gz iced-86dede4c4cc2bca9be7d2e6bd831daa98bd7043d.tar.bz2 iced-86dede4c4cc2bca9be7d2e6bd831daa98bd7043d.zip |
Make example work on web and update READMEs
Diffstat (limited to 'examples/tour/Cargo.toml')
-rw-r--r-- | examples/tour/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/tour/Cargo.toml b/examples/tour/Cargo.toml index a0e3eee8..8cdce295 100644 --- a/examples/tour/Cargo.toml +++ b/examples/tour/Cargo.toml @@ -8,9 +8,12 @@ repository = "https://github.com/hecrj/iced" edition = "2018" publish = false +[lib] +crate-type = ["cdylib", "rlib"] + [[bin]] -name = "ggez" -path = "src/iced_ggez/main.rs" +name = "main" +path = "src/main.rs" [dependencies] futures-preview = "=0.3.0-alpha.18" |