1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -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

@@ -11,12 +11,7 @@ readme = "README.md"
repository = "https://github.com/emilk/egui/tree/master/epi"
categories = ["gui", "game-development"]
keywords = ["egui", "gui", "gamedev"]
include = [
"../LICENSE-APACHE",
"../LICENSE-MIT",
"**/*.rs",
"Cargo.toml",
]
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
[package.metadata.docs.rs]
all-features = true
@@ -33,7 +28,9 @@ persistence = ["ron", "serde", "egui/persistence"]
[dependencies]
egui = { version = "0.17.0", path = "../egui", default-features = false, features = ["single_threaded"] }
egui = { version = "0.17.0", path = "../egui", default-features = false, features = [
"single_threaded",
] }
tracing = "0.1"
directories-next = { version = "2", optional = true }