-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 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
[package]
name = "sakamata"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["MrPicklePinosaur"]
description = "orca whale simulation software"
repository = "https://github.com/sakamatawatch/sakamata"
[features]
default = ["bevy_sprite", "bevy_ui"]
bevy_sprite = ["bevy/bevy_sprite", "bevy/bevy_render"]
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_text", "bevy/bevy_render"]
[dependencies]
bevy = { version = "0.8", default-features = false, features = [ "render", "animation", "bevy_winit", "bevy_gilrs", "png", "hdr", "filesystem_watcher", "x11", "trace" ] }
big-brain = { version = "0.12" }
iyes_loopless = { version = "0.7" }
bevy_bobs = { git = "https://github.com/HalfPixelStudios/bevy_bobs", features = ["physics_2d"] }
bevy_egui = "0.16"
bevy_pancam = { version = "0.6", features = ["bevy_egui"] }
bevy_prototype_lyon = { version = "0.6" }
bevy_mod_picking = { version = "0.9" }
bevy_hanabi = { version = "0.3", default-features = false, features = ["2d"] }
rand = { version = "0.8" }
pino_utils = { git = "https://github.com/MrPicklePinosaur/pino_utils" }
lazy_static = "1.4"