Remove unused feature declaration

This commit is contained in:
Hanno Braun 2022-10-12 13:02:30 +02:00
parent af7b9be9cf
commit 18fd0533fb
2 changed files with 1 additions and 12 deletions

8
Cargo.lock generated
View File

@ -853,11 +853,9 @@ checksum = "f12a8d8f92a429e2e9399003bc01d48f54aefa6fec126cbd3462e313c0ee0e91"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"egui", "egui",
"pollster",
"tracing", "tracing",
"type-map", "type-map",
"wgpu", "wgpu",
"winit",
] ]
[[package]] [[package]]
@ -2603,12 +2601,6 @@ dependencies = [
"miniz_oxide", "miniz_oxide",
] ]
[[package]]
name = "pollster"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7"
[[package]] [[package]]
name = "ppv-lite86" name = "ppv-lite86"
version = "0.2.16" version = "0.2.16"

View File

@ -13,6 +13,7 @@ categories.workspace = true
[dependencies] [dependencies]
bytemuck = "1.12.1" bytemuck = "1.12.1"
egui = "0.19.0" egui = "0.19.0"
egui-wgpu = "0.19.0"
fj-interop.workspace = true fj-interop.workspace = true
fj-math.workspace = true fj-math.workspace = true
raw-window-handle = "0.4.3" raw-window-handle = "0.4.3"
@ -20,7 +21,3 @@ thiserror = "1.0.35"
tracing = "0.1.37" tracing = "0.1.37"
wgpu = "0.13.1" wgpu = "0.13.1"
wgpu_glyph = "0.17.0" wgpu_glyph = "0.17.0"
[dependencies.egui-wgpu]
version = "0.19.0"
features = ["winit"]