Use iced_renderer instead of iced_graphics in root crate

This commit is contained in:
Héctor Ramón Jiménez 2023-02-28 20:47:13 +01:00
parent fd06de5d9c
commit 3f6e28fa9b
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
6 changed files with 13 additions and 6 deletions

View file

@ -17,9 +17,9 @@ image = ["iced_renderer/image", "image_rs"]
# Enables the `Svg` widget
svg = ["iced_renderer/svg"]
# Enables the `Canvas` widget
canvas = ["iced_graphics/canvas"]
canvas = ["iced_renderer/canvas"]
# Enables the `QRCode` widget
qr_code = ["iced_graphics/qr_code"]
qr_code = ["iced_renderer/qr_code"]
# Enables a debug view in native platforms (press F12)
debug = ["iced_winit/debug"]
# Enables `tokio` as the `executor::Default` on native platforms
@ -60,7 +60,6 @@ members = [
iced_core = { version = "0.8", path = "core" }
iced_futures = { version = "0.6", path = "futures" }
iced_native = { version = "0.9", path = "native" }
iced_graphics = { version = "0.7", path = "graphics" }
iced_renderer = { version = "0.1", path = "renderer" }
iced_winit = { version = "0.8", path = "winit", features = ["application"] }
thiserror = "1.0"