From 2ebc92319711e6fa0dda310939257334625b59c9 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Wed, 7 Jun 2023 15:19:11 -0700 Subject: feat: use lyon for easing --- examples/loading_spinners/Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/loading_spinners/Cargo.toml (limited to 'examples/loading_spinners/Cargo.toml') diff --git a/examples/loading_spinners/Cargo.toml b/examples/loading_spinners/Cargo.toml new file mode 100644 index 00000000..f37017c6 --- /dev/null +++ b/examples/loading_spinners/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "loading_spinners" +version = "0.1.0" +authors = ["Nick Senger "] +edition = "2021" +publish = false + +[dependencies] +flo_curves = "0.7" +iced = { path = "../..", features = ["canvas"] } +iced_core = { path = "../../core" } +iced_widget = { path = "../../widget" } +once_cell = "1" +lyon = "1" -- cgit From 56eacdb3583e701cde8cca074e151b24c3fd8df3 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Thu, 8 Jun 2023 07:47:57 -0700 Subject: comment: cleanup imports --- examples/loading_spinners/Cargo.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'examples/loading_spinners/Cargo.toml') diff --git a/examples/loading_spinners/Cargo.toml b/examples/loading_spinners/Cargo.toml index f37017c6..ee9a48aa 100644 --- a/examples/loading_spinners/Cargo.toml +++ b/examples/loading_spinners/Cargo.toml @@ -6,9 +6,6 @@ edition = "2021" publish = false [dependencies] -flo_curves = "0.7" -iced = { path = "../..", features = ["canvas"] } -iced_core = { path = "../../core" } -iced_widget = { path = "../../widget" } +iced = { path = "../..", features = ["advanced", "canvas"] } +lyon_algorithms = "1" once_cell = "1" -lyon = "1" -- cgit