forked from fishfolk/bones
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 1.03 KB
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
[package]
authors = ["The Fish Folks & Spicy Lobster Developers"]
description = "Opinionated game meta-engine built on Bevy"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "bones_lib"
repository = "https://github.com/fishfolk/bones"
version = "0.2.0"
[workspace]
members = [".", "crates/*"]
[profile.release]
lto = true
[features]
bevy = ["bones_asset/bevy", "bones_render/bevy", "dep:bones_bevy_utils"]
serde = ["dep:serde", "bones_render/serde", "bones_ecs/serde"]
[dependencies]
bones_asset = { version = "^0.2.0", path = "./crates/bones_asset" }
bones_bevy_utils = { version = "^0.2.0", path = "./crates/bones_bevy_utils", optional = true }
bones_ecs = { version = "^0.2.0", path = "./crates/bones_ecs" }
bones_input = { version = "^0.2.0", path = "./crates/bones_input" }
bones_render = { version = "^0.2.0", path = "./crates/bones_render" }
type_ulid = { version = "^0.2.0", path = "./crates/type_ulid" }
noise = "0.8"
serde = { version = "1.0", features = ["derive"], optional = true }