-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (27 loc) · 845 Bytes
/
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
[package]
name = "labrynth-game"
version = "0.1.0"
authors = ["Adam Shaw <[email protected]>"]
edition = "2018"
[workspace]
members = [
"crates/*"
]
[dependencies]
bevy = { git = "https://github.com/insrcd/bevy.git" }
rhai = "0.18.1"
log = { version = "0.4.8", features = ["serde"] }
serde = "1.0.115"
rand = "0.7.3"
strum = "0.19.2"
strum_macros = "0.19.2"
sled = "0.34.3"
# Local
lab-world = { path = "crates/lab-world", version = "0.1.0" }
lab-entities = { path = "crates/lab-entities", version = "0.1.0" }
lab-sprites = { path = "crates/lab-sprites", version = "0.1.0" }
lab-input = { path = "crates/lab-input", version = "0.1.0" }
lab-demo = { path = "crates/lab-demo", version = "0.1.0" }
lab-builder = { path = "crates/lab-builder", version = "0.1.0" }
lab-core = { path = "crates/lab-core", version = "0.1.0" }
[features]