mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 13:20:05 -04:00
Run a formatter on all toml files
This commit is contained in:
@@ -11,12 +11,7 @@ readme = "README.md"
|
||||
repository = "https://github.com/emilk/egui/tree/master/eframe"
|
||||
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
|
||||
@@ -55,18 +50,32 @@ epi = { version = "0.17.0", path = "../epi" }
|
||||
# native:
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||
egui-winit = { version = "0.17.0", path = "../egui-winit", default-features = false }
|
||||
egui_glium = { version = "0.17.0", path = "../egui_glium", default-features = false, features = ["clipboard", "epi", "links"], optional = true }
|
||||
egui_glow = { version = "0.17.0", path = "../egui_glow", default-features = false, features = ["clipboard", "epi", "links", "winit"], optional = true }
|
||||
egui_glium = { version = "0.17.0", path = "../egui_glium", optional = true, default-features = false, features = [
|
||||
"clipboard",
|
||||
"epi",
|
||||
"links",
|
||||
] }
|
||||
egui_glow = { version = "0.17.0", path = "../egui_glow", optional = true, default-features = false, features = [
|
||||
"clipboard",
|
||||
"epi",
|
||||
"links",
|
||||
"winit",
|
||||
] }
|
||||
|
||||
# web:
|
||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||
egui_web = { version = "0.17.0", path = "../egui_web", default-features = false, features = ["glow"] }
|
||||
egui_web = { version = "0.17.0", path = "../egui_web", default-features = false, features = [
|
||||
"glow",
|
||||
] }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
# For examples:
|
||||
egui_extras = { path = "../egui_extras", features = ["image", "svg"] }
|
||||
ehttp = "0.2"
|
||||
image = { version = "0.24", default-features = false, features = ["jpeg", "png"] }
|
||||
image = { version = "0.24", default-features = false, features = [
|
||||
"jpeg",
|
||||
"png",
|
||||
] }
|
||||
poll-promise = "0.1"
|
||||
rfd = "0.8"
|
||||
|
||||
Reference in New Issue
Block a user