We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20db6bc commit 4e41bcaCopy full SHA for 4e41bca
Cargo.toml
@@ -68,6 +68,9 @@ image = { workspace = true }
68
im = { workspace = true }
69
wgpu = { workspace = true }
70
71
+[dev-dependencies]
72
+criterion = "0.5"
73
+
74
[features]
75
default = ["editor", "default-image-formats"]
76
# TODO: this is only winit and the editor serde, there are other dependencies that still depend on
@@ -99,3 +102,10 @@ tokio = ["dep:tokio"]
99
102
# rfd (file dialog) async runtime
100
103
rfd-async-std = ["dep:rfd", "rfd/async-std"]
101
104
rfd-tokio = ["dep:rfd", "rfd/tokio"]
105
106
+[profile.bench]
107
+debug = true
108
109
+[[bench]]
110
+name = "basic_editing"
111
+harness = false
0 commit comments