slim down gltf and winit features and remove unused dependencies

This commit is contained in:
Carter Anderson 2020-07-10 12:08:51 -07:00
parent 2508a59f68
commit a656588788
5 changed files with 4 additions and 8 deletions

View File

@ -9,5 +9,4 @@ bevy_derive = { path = "../bevy_derive" }
bevy_ecs = { path = "../bevy_ecs" }
libloading = "0.5.2"
log = { version = "0.4", features = ["release_max_level_info"] }
serde = { version = "1.0", features = ["derive"]}
erased-serde = "0.3"
serde = { version = "1.0", features = ["derive"]}

View File

@ -10,7 +10,6 @@ filesystem_watcher = ["notify"]
[dependencies]
bevy_app = { path = "../bevy_app" }
bevy_core = { path = "../bevy_core" }
bevy_ecs = { path = "../bevy_ecs" }
bevy_type_registry = { path = "../bevy_type_registry" }
bevy_property = { path = "../bevy_property" }

View File

@ -11,7 +11,5 @@ profiler = []
[dependencies]
hecs = { path = "hecs", features = ["macros", "serialize"] }
uuid = { version = "0.8", features = ["v4", "serde"] }
rand = "0.7.2"
rayon = "1.3"
downcast-rs = "1.1.1"
rayon = "1.3"

View File

@ -9,6 +9,6 @@ bevy_app = { path = "../bevy_app" }
bevy_asset = { path = "../bevy_asset" }
bevy_render = { path = "../bevy_render" }
gltf = "0.15.2"
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
thiserror = "1.0"
anyhow = "1.0"

View File

@ -10,6 +10,6 @@ bevy_ecs = { path = "../bevy_ecs" }
bevy_input = { path = "../bevy_input" }
bevy_window = { path = "../bevy_window" }
winit = { version = "0.22.2" }
winit = { git = "https://github.com/rust-windowing/winit/", default-features = false, features = ["x11"] }
glam = "0.8.7"
log = { version = "0.4", features = ["release_max_level_info"] }