-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 987 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
40
41
[workspace]
members = [
"crates/ast",
"crates/butter",
"crates/converters/json",
"crates/dtoken",
"crates/parser",
]
exclude = ["crates/converters/mermaidjs"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dcdpr/BDSL"
[workspace.lints.rust]
future-incompatible = "warn"
let-underscore = "warn"
nonstandard-style = "warn"
rust-2018-compatibility = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
unused = "warn"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
[patch.crates-io]
bevy_ui = { git = "https://github.com/jeanmertz/bevy", branch = "jean/debug-ui-gizmo-size" }
bevy_color = { git = "https://github.com/jeanmertz/bevy", branch = "jean/debug-ui-gizmo-size" }
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3