2022-05-12 07:02:28 +00:00
|
|
|
[package]
|
|
|
|
name = "egui-wgpu"
|
2022-08-20 14:44:05 +00:00
|
|
|
version = "0.19.0"
|
2022-05-12 07:02:28 +00:00
|
|
|
description = "Bindings for using egui natively using the wgpu library"
|
|
|
|
authors = [
|
|
|
|
"Nils Hasenbanck <nils@hasenbanck.de>",
|
|
|
|
"embotech <opensource@embotech.com>",
|
|
|
|
"Emil Ernerfeldt <emil.ernerfeldt@gmail.com>",
|
|
|
|
]
|
|
|
|
edition = "2021"
|
2022-07-26 14:50:53 +00:00
|
|
|
rust-version = "1.61"
|
2022-08-20 13:18:02 +00:00
|
|
|
homepage = "https://github.com/emilk/egui/tree/master/crates/egui-wgpu"
|
2022-05-12 07:02:28 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2022-08-20 13:18:02 +00:00
|
|
|
repository = "https://github.com/emilk/egui/tree/master/crates/egui-wgpu"
|
2022-05-12 07:02:28 +00:00
|
|
|
categories = ["gui", "game-development"]
|
|
|
|
keywords = ["wgpu", "egui", "gui", "gamedev"]
|
2022-05-15 18:17:48 +00:00
|
|
|
include = [
|
|
|
|
"../LICENSE-APACHE",
|
|
|
|
"../LICENSE-MIT",
|
|
|
|
"**/*.rs",
|
|
|
|
"**/*.wgsl",
|
|
|
|
"Cargo.toml",
|
|
|
|
]
|
|
|
|
|
2022-05-31 10:24:12 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2022-05-12 07:02:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
[features]
|
2022-06-09 13:27:22 +00:00
|
|
|
## Enable [`winit`](https://docs.rs/winit) integration.
|
2022-05-12 07:02:28 +00:00
|
|
|
winit = ["dep:pollster", "dep:winit"]
|
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-20 14:44:05 +00:00
|
|
|
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [
|
2022-05-12 07:02:28 +00:00
|
|
|
"bytemuck",
|
|
|
|
] }
|
|
|
|
|
|
|
|
bytemuck = "1.7"
|
2022-07-03 22:11:08 +00:00
|
|
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
2022-05-28 15:52:36 +00:00
|
|
|
type-map = "0.5.0"
|
2022-07-03 13:43:39 +00:00
|
|
|
wgpu = "0.13"
|
2022-05-12 07:02:28 +00:00
|
|
|
|
2022-06-09 13:27:22 +00:00
|
|
|
#! ### Optional dependencies
|
2022-06-09 15:41:37 +00:00
|
|
|
## Enable this when generating docs.
|
|
|
|
document-features = { version = "0.2", optional = true }
|
|
|
|
|
2022-05-12 07:02:28 +00:00
|
|
|
pollster = { version = "0.2", optional = true }
|
2022-08-14 14:23:46 +00:00
|
|
|
winit = { version = "0.27.2", optional = true }
|