1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 06:10:06 -04:00

Run a formatter on all toml files

This commit is contained in:
Emil Ernerfeldt
2022-03-10 14:25:33 +01:00
parent c19a7ff34f
commit 510cef02ca
12 changed files with 77 additions and 74 deletions

View File

@@ -41,7 +41,7 @@ links = ["egui-winit/links"]
persistence = [
"egui-winit/persistence",
"egui/persistence",
"epi", # also implied by the lines below, see https://github.com/rust-lang/cargo/issues/8832
"epi", # also implied by the lines below, see https://github.com/rust-lang/cargo/issues/8832
"epi/file_storage",
"epi/persistence",
]
@@ -67,9 +67,12 @@ memoffset = "0.6"
tracing = "0.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.17.0", path = "../egui-winit", default-features = false, features = ["dark-light", "epi"], optional = true }
egui-winit = { version = "0.17.0", path = "../egui-winit", optional = true, default-features = false, features = [
"dark-light",
"epi",
] }
glutin = { version = "0.28.0", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features=["console"] }
web-sys = { version = "0.3", features = ["console"] }
wasm-bindgen = { version = "0.2" }