From 92af1b1c123983b94e38519943b6ad4fab3db9d7 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 21 Jan 2020 00:37:57 +0100 Subject: Fix `todos` build workflow --- examples/todos/Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'examples/todos/Cargo.toml') diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index 53a135e6..21acd5d6 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -5,8 +5,6 @@ authors = ["Héctor Ramón Jiménez "] edition = "2018" publish = false -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] iced = { path = "../.." } iced_futures = { path = "../../futures", features = ["async-std"] } @@ -14,3 +12,9 @@ async-std = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" directories = "2.0" + +[package.metadata.deb] +assets = [ + ["target/release/todos", "usr/bin/iced-todos", "755"], + ["iced-todos.desktop", "usr/share/applications/", "644"], +] -- cgit