-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (43 loc) · 1.14 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "planty"
version = "0.1.0"
edition = "2021"
[lib]
name = "pl"
[dependencies]
bevy_polyline = { git = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline" }
lazy_static = "1.4"
regex = "1.5"
anyhow = "1"
thiserror = "1"
smooth-bevy-cameras = "0.2"
[dependencies.dcc-lsystem]
git = "https://github.com/piedoom/dcc-lsystem"
default_features = false
[dependencies.ron]
version = "0.7"
[dependencies.serde]
version = "1"
default_features = true
[dependencies.bevy]
default_features = false
version = "0.6"
features = ["render", "x11", "bevy_winit"]
[dependencies.bevy_egui]
branch = "main"
git = "https://github.com/mvlabat/bevy_egui"
[dependencies.rand]
version = "*"
[patch]
[patch.crates-io]
[patch.crates-io.bevy]
branch = "main"
#rev = "b13f238fc73692741ff87f804117770b1f42933c"
git = "https://github.com/bevyengine/bevy"
[target]
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))"]
[target."cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))".dependencies]
futures = "0.3"
gloo-events = "0.1"
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["Window", "Document", "Element"] }