Draft iced_devtools subcrate structure

This commit is contained in:
Héctor Ramón Jiménez 2025-04-05 19:27:15 +02:00
parent 3f67044977
commit a719b0596c
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
5 changed files with 201 additions and 2 deletions

View file

@ -42,7 +42,7 @@ markdown = ["iced_widget/markdown"]
# Enables lazy widgets
lazy = ["iced_widget/lazy"]
# Enables a debug view in native platforms (press F12)
debug = ["iced_winit/debug"]
debug = ["iced_winit/debug", "iced_devtools"]
# Enables the `thread-pool` futures executor as the `executor::Default` on native platforms
thread-pool = ["iced_futures/thread-pool"]
# Enables `tokio` as the `executor::Default` on native platforms
@ -80,6 +80,9 @@ iced_widget.workspace = true
iced_winit.features = ["program"]
iced_winit.workspace = true
iced_devtools.workspace = true
iced_devtools.optional = true
iced_highlighter.workspace = true
iced_highlighter.optional = true
@ -112,6 +115,7 @@ members = [
"beacon",
"core",
"debug",
"devtools",
"futures",
"graphics",
"highlighter",
@ -142,6 +146,7 @@ iced = { version = "0.14.0-dev", path = "." }
iced_beacon = { version = "0.14.0-dev", path = "beacon" }
iced_core = { version = "0.14.0-dev", path = "core" }
iced_debug = { version = "0.14.0-dev", path = "debug" }
iced_devtools = { version = "0.14.0-dev", path = "devtools" }
iced_futures = { version = "0.14.0-dev", path = "futures" }
iced_graphics = { version = "0.14.0-dev", path = "graphics" }
iced_highlighter = { version = "0.14.0-dev", path = "highlighter" }