-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "bevy_fsl_box_frame"
version = "0.4.0"
description = "A gizmo for manipulating an OBB via 3D picking"
edition = "2021"
authors = ["Duncan Fairbanks <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_fsl_box_frame"
homepage = "https://github.com/ForesightMiningSoftwareCorporation/bevy_fsl_box_frame"
documentation = "https://docs.rs/bevy_fsl_box_frame"
readme = "README.md"
keywords = ["bevy", "gizmo"]
categories = ["game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
approx = "0.5"
bevy_polyline = "0.10"
parry3d = "0.13"
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_pbr",
] }
bevy_mod_picking = { version = "0.20", default-features = false }
nalgebra = { version = "0.32", features = ["glam027"] }
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_pbr",
"bevy_winit",
"x11",
"tonemapping_luts",
] }