From cff891833be68c0e2d4919d4475daf23da821f9b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 13 Feb 2022 22:19:43 +0700 Subject: Implement `pure` version of the `tour` example :tada: --- examples/pure/tour/Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/pure/tour/Cargo.toml (limited to 'examples/pure/tour/Cargo.toml') diff --git a/examples/pure/tour/Cargo.toml b/examples/pure/tour/Cargo.toml new file mode 100644 index 00000000..8ce5f198 --- /dev/null +++ b/examples/pure/tour/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "pure_tour" +version = "0.1.0" +authors = ["Héctor Ramón Jiménez "] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../../..", features = ["image", "debug", "pure"] } +env_logger = "0.8" -- cgit