big_space_with_trim/Cargo.toml
Aevyrie Roessler 9f3084474d
initial commit
2023-01-06 08:02:59 -08:00

24 lines
534 B
TOML

[package]
name = "big_space"
version = "0.1.0"
edition = "2021"
description = "A floating origin plugin for bevy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.9", default_features = false }
bevy_rapier3d = { version = "0.19", optional = true }
bevy_polyline = "0.4"
[dev-dependencies]
bevy = { version = "0.9", default_features = false, features = [
"bevy_render",
"bevy_winit",
"x11",
] }
[features]
rapier = ["bevy_rapier3d"]