From cdfb8b30680de164280b8b90fbc08a1638e597e2 Mon Sep 17 00:00:00 2001 From: Nick Senger Date: Tue, 6 Jun 2023 21:12:41 -0700 Subject: feat: add progress indicators example --- examples/progress_indicators/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/progress_indicators/Cargo.toml (limited to 'examples/progress_indicators/Cargo.toml') diff --git a/examples/progress_indicators/Cargo.toml b/examples/progress_indicators/Cargo.toml new file mode 100644 index 00000000..89ceb127 --- /dev/null +++ b/examples/progress_indicators/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "progress_indicators" +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" } +lazy_static = "1.4" -- cgit