Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
refactor: cleanup unused dependencies (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shatur authored Mar 15, 2022
1 parent 1429426 commit 31eb0e3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ heron_debug = { version = "2.2.0", path = "debug", optional = true }
bevy = { version = "0.6.0", default-features = false }

[dev-dependencies]
bevy = { version = "0.6.0", default-features = false, features=["render", "x11"] }
bevy = { version = "0.6.0", default-features = false, features=["bevy_sprite", "bevy_render", "bevy_core_pipeline", "x11"] }
rstest = "0.12"

[build-dependencies]
Expand Down
3 changes: 1 addition & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ all-features = true
[features]
default = []
3d = []
collision-from-mesh = ["bevy/render"]
collision-from-mesh = ["bevy/bevy_render"]

[dependencies]
bevy = { version = "0.6.0", default-features = false }
Expand All @@ -23,7 +23,6 @@ smallvec = "1.8"

[dev-dependencies]
rstest = "0.12"
bevy = { version = "0.6.0", default-features = false, features = ["render"] }

[build-dependencies]
cfg_aliases = "0.1.1"
2 changes: 1 addition & 1 deletion debug/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default = []
[dependencies]
heron_core = { version = "2.2.0", path = "../core" }
heron_rapier = { version = "2.2.0", path = "../rapier" }
bevy = { version = "0.6.0", default-features = false, features = ["render"] }
bevy = { version = "0.6.0", default-features = false, features = ["bevy_render"] }
bevy_prototype_lyon = { version = "0.4.0", optional = true }
lyon_path = { version = "0.17.4", optional = true }
fnv = "1.0"
Expand Down
1 change: 0 additions & 1 deletion rapier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ fnv = "1.0"
crossbeam = "0.8.0"

[dev-dependencies]
bevy = { version = "0.6.0", default-features = false }
rstest = "0.12"

[build-dependencies]
Expand Down

0 comments on commit 31eb0e3

Please sign in to comment.