Skip to content

Commit 383115c

Browse files
committed
Fix cargo features
1 parent 320a660 commit 383115c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ exclude = ["assets/*"]
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
bevy = "0.8"
14+
bevy = { version = "0.8.0", default-features = false, features = ["render", "bevy_asset"] }
1515
dot_vox = "4.1.0"
1616
ndshape = "0.3.0"
1717
block-mesh = "0.2.0"
1818
ndcopy = "0.3.0"
1919
anyhow = "1.0.38"
2020

21+
[dev-dependencies]
22+
bevy = { version = "0.8.0", default-features = false, features = ["bevy_winit"] }
23+
2124
[[example]]
2225
name = "basic"
2326
path = "examples/basic.rs"

0 commit comments

Comments
 (0)