Restructured everything to make profiling a feature of iced_winit.
This commit is contained in:
parent
c5cd236b73
commit
4b6d3797d4
23 changed files with 184 additions and 254 deletions
13
Cargo.toml
13
Cargo.toml
|
|
@ -39,13 +39,12 @@ smol = ["iced_futures/smol"]
|
|||
palette = ["iced_core/palette"]
|
||||
# Enables querying system information
|
||||
system = ["iced_winit/system"]
|
||||
# Enables tracing with Chrome
|
||||
trace_chrome = [
|
||||
"iced_winit/trace",
|
||||
"iced_wgpu?/trace",
|
||||
"iced_glow?/trace",
|
||||
# Enables chrome traces
|
||||
chrome-trace = [
|
||||
"iced_winit/chrome-trace",
|
||||
"iced_glutin?/trace",
|
||||
"iced_profiling/tracing-chrome"
|
||||
"iced_wgpu?/tracing",
|
||||
"iced_glow?/tracing",
|
||||
]
|
||||
|
||||
[badges]
|
||||
|
|
@ -59,7 +58,6 @@ members = [
|
|||
"glow",
|
||||
"glutin",
|
||||
"lazy",
|
||||
"profiling",
|
||||
"native",
|
||||
"style",
|
||||
"wgpu",
|
||||
|
|
@ -75,7 +73,6 @@ iced_graphics = { version = "0.5", path = "graphics" }
|
|||
iced_winit = { version = "0.6", path = "winit", features = ["application"] }
|
||||
iced_glutin = { version = "0.5", path = "glutin", optional = true }
|
||||
iced_glow = { version = "0.5", path = "glow", optional = true }
|
||||
iced_profiling = { version = "0.1.0", path = "profiling", optional = true }
|
||||
thiserror = "1.0"
|
||||
|
||||
[dependencies.image_rs]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue