-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (34 loc) · 828 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
34
35
36
37
38
39
[package]
name = "feldspar-editor"
version = "0.1.0"
authors = ["Duncan <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
[profile]
dev = { opt-level = 2 }
release = { lto = "thin" }
[dependencies]
approx = "0.4"
futures = "0.3"
env_logger = "0.8"
log = "0.4"
ron = "0.6"
serde = "1.0"
[dependencies.bevy]
version = "0.5"
# path = "../bevy"
# git = "https://github.com/bevyengine/bevy"
# branch = "main"
# rev = "7a511394"
default-features = false
features = ["bevy_wgpu", "bevy_winit", "render", "png", "x11"]
[dependencies.feldspar]
git = "https://github.com/bonsairobo/feldspar"
# branch = "main"
rev = "e09001c1"
# path = "../feldspar"
[dependencies.smooth-bevy-cameras]
git = "https://github.com/bonsairobo/smooth-bevy-cameras"
rev = "8782b98"
# branch = "main"
# path = "../smooth-bevy-cameras"