From fe17641d46b47f60fc2baa68bb7a0c4e137aa628 Mon Sep 17 00:00:00 2001 From: Artur Sapek Date: Wed, 13 Apr 2022 19:08:53 -0600 Subject: Working multitouch example --- examples/multitouch/Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/multitouch/Cargo.toml (limited to 'examples/multitouch/Cargo.toml') diff --git a/examples/multitouch/Cargo.toml b/examples/multitouch/Cargo.toml new file mode 100644 index 00000000..ecd4760c --- /dev/null +++ b/examples/multitouch/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "multitouch" +version = "0.1.0" +authors = ["Artur Sapek "] +edition = "2021" +publish = false + +[dependencies] +iced = { path = "../..", features = ["canvas", "tokio", "debug"] } +tokio = { version = "1.0", features = ["sync"] } +env_logger = "0.9" -- cgit