big_space_with_trim/Cargo.toml
Aevyrie 8721911b49
Explicit BigSpaces (#22)
Changes the design of the plugin to work with multiple, independent
high-precision hierarchies at the root with the `BigSpace` component at
the root of each of these hierarchies.

Closes #17
Closes #19 
Closes #21
2024-06-17 01:41:03 -07:00

73 lines
1.7 KiB
TOML

[package]
name = "big_space"
version = "0.6.0"
edition = "2021"
description = "A floating origin plugin for bevy"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "floating-origin", "large-scale", "space"]
repository = "https://github.com/aevyrie/big_space"
documentation = "https://docs.rs/crate/big_space/latest"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.13", default_features = false }
[dev-dependencies]
bevy = { version = "0.13", default-features = false, features = [
"bevy_scene",
"bevy_gltf",
"bevy_winit",
"default_font",
"bevy_ui",
"bevy_pbr",
"x11",
"tonemapping_luts",
"multi-threaded",
] }
bevy-inspector-egui = "0.24"
bevy_framepace = { version = "0.15", default-features = false }
rand = "0.8.5"
[features]
default = ["debug", "camera", "bevy_render"]
debug = ["bevy/bevy_gizmos"]
bevy_render = ["bevy/bevy_render"]
camera = ["bevy_render"]
[[example]]
name = "demo"
path = "examples/demo.rs"
required-features = ["default"]
doc-scrape-examples = true
[[example]]
name = "debug"
path = "examples/debug.rs"
required-features = ["default"]
doc-scrape-examples = true
[[example]]
name = "error"
path = "examples/error.rs"
required-features = ["default"]
doc-scrape-examples = true
[[example]]
name = "error_child"
path = "examples/error_child.rs"
required-features = ["default"]
doc-scrape-examples = true
[[example]]
name = "planets"
path = "examples/planets.rs"
required-features = ["default"]
doc-scrape-examples = true
[[example]]
name = "split_screen"
path = "examples/split_screen.rs"
required-features = ["default"]
doc-scrape-examples = true