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 From 9d6834f250348b00b6bb9dea58ad4c4b58bfab7b Mon Sep 17 00:00:00 2001 From: Artur Sapek Date: Wed, 27 Apr 2022 10:30:32 -0600 Subject: vornoi experiment --- examples/multitouch/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/multitouch/Cargo.toml') diff --git a/examples/multitouch/Cargo.toml b/examples/multitouch/Cargo.toml index ecd4760c..63c5af74 100644 --- a/examples/multitouch/Cargo.toml +++ b/examples/multitouch/Cargo.toml @@ -9,3 +9,4 @@ publish = false iced = { path = "../..", features = ["canvas", "tokio", "debug"] } tokio = { version = "1.0", features = ["sync"] } env_logger = "0.9" +voronoi = "0.1.4" -- cgit From ce2c795bdaca5709fa338f42b9f1c230372bbbbf Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 4 Oct 2022 11:50:32 +0200 Subject: Replace `voronoi` crate with `voronator` --- examples/multitouch/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/multitouch/Cargo.toml') diff --git a/examples/multitouch/Cargo.toml b/examples/multitouch/Cargo.toml index 63c5af74..f7c8c145 100644 --- a/examples/multitouch/Cargo.toml +++ b/examples/multitouch/Cargo.toml @@ -9,4 +9,4 @@ publish = false iced = { path = "../..", features = ["canvas", "tokio", "debug"] } tokio = { version = "1.0", features = ["sync"] } env_logger = "0.9" -voronoi = "0.1.4" +voronator = "0.2" -- cgit