From 897188317b5875cc00a0f1c797790df8ac13687f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 11 Feb 2022 17:50:12 +0700 Subject: Rename `iced_virtual` to `iced_pure` `virtual` is a reserved keyword in Rust :grimacing: --- pure/Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pure/Cargo.toml (limited to 'pure/Cargo.toml') diff --git a/pure/Cargo.toml b/pure/Cargo.toml new file mode 100644 index 00000000..bdfe43ae --- /dev/null +++ b/pure/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "iced_pure" +version = "0.1.0" +edition = "2021" + +[dependencies] +iced_native = { version = "0.4", path = "../native" } +iced_style = { version = "0.3", path = "../style" } -- cgit From 3f1a45ca47dc086a5c4e45867d3f9c63a4e7ba19 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 13 Feb 2022 17:20:10 +0700 Subject: Implement `Slider` in `iced_pure` --- pure/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'pure/Cargo.toml') diff --git a/pure/Cargo.toml b/pure/Cargo.toml index bdfe43ae..317dccdf 100644 --- a/pure/Cargo.toml +++ b/pure/Cargo.toml @@ -6,3 +6,4 @@ edition = "2021" [dependencies] iced_native = { version = "0.4", path = "../native" } iced_style = { version = "0.3", path = "../style" } +num-traits = "0.2" -- cgit