-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
69 lines (61 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "panoply"
version = "0.1.0"
edition = "2021"
[features]
default = ["editor"]
editor = [] # Enable editor features
[workspace]
members = ["crates/*"]
[workspace.dependencies]
bevy = { version = "0.14.1", features = [
"dynamic_linking",
"file_watcher",
"serialize",
] }
bevy_mod_picking = { version = "0.20.1" }
bevy_mod_stylebuilder = "0.1.1"
bevy_quill = "0.1.2"
bevy_quill_obsidian = "0.1.0"
bevy_quill_overlays = { version = "0.1.0" }
panoply_exemplar = { path = "crates/panoply_exemplar" }
bevy_mod_preferences = { path = "crates/bevy_mod_preferences" }
[dependencies]
bevy = { workspace = true }
bevy-inspector-egui = "0.25.1"
bevy_mod_picking = { workspace = true }
bevy_mod_stylebuilder = { workspace = true }
bevy_mod_preferences = { workspace = true }
bevy_quill = { workspace = true }
bevy_quill_obsidian = { workspace = true }
bevy_quill_overlays = { workspace = true }
bitflags = "2.4.2"
directories = "5.0.1"
earcutr = "0.4.3"
futures-lite = "2.2.0"
lru = "0.11.0"
rmp-serde = "1.1.2"
serde = "1.0.171"
serde_bytes = "0.11.12"
serde_derive = "1.0.171"
serde_json = "1.0.103"
serde_repr = "0.1.16"
thiserror = "1.0.57"
panoply_exemplar = { workspace = true }
base64 = "0.22.0"
regex = "1.10.6"
i_overlay = "1.4.2"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
bevy_mod_stylebuilder = { version = "0.1.1", path = "../quill2/crates/bevy_mod_stylebuilder" }
bevy_quill = { version = "0.1.2", path = "../quill2" }
bevy_quill_obsidian = { version = "0.1.0", path = "../quill2/crates/bevy_quill_obsidian" }
bevy_quill_overlays = { version = "0.1.0", path = "../quill2/crates/bevy_quill_overlays" }
[lints.clippy]
type_complexity = "allow"
too_many_arguments = "allow"