From bf600a0811649392008927578afc32a18a93de34 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 27 Jan 2025 02:50:51 +0100 Subject: Draft basic `Animation` API in `iced_core` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 89c28139..156d673b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -158,6 +158,7 @@ half = "2.2" image = { version = "0.25", default-features = false } kamadak-exif = "0.5" kurbo = "0.10" +lilt = "0.7" log = "0.4" lyon = "1.0" lyon_path = "1.0" -- cgit From e2c52c9728cb03d01b33388a8159db9bd9eac04c Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 27 Jan 2025 05:01:43 +0100 Subject: Implement AI `gallery` example :tada: It displays the most popular daily images of Civitai! --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 156d673b..58b54897 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -193,7 +193,7 @@ window_clipboard = "0.4.1" winit = { git = "https://github.com/iced-rs/winit.git", rev = "11414b6aa45699f038114e61b4ddf5102b2d3b4b" } [workspace.lints.rust] -rust_2018_idioms = { level = "forbid", priority = -1 } +rust_2018_idioms = { level = "deny", priority = -1 } missing_debug_implementations = "deny" missing_docs = "deny" unsafe_code = "deny" -- cgit