-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 1.15 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
[package]
name = "yml_dialog"
version = "0.2.3"
authors = ["Olf EPAIN <[email protected]>", "Morgan Van Amerongen <[email protected]>"]
description = "A very light base structure to implement an Rust Dialog using YML (file) format"
keywords = ["game", "rust", "structure", "dialog", "yml", "bevy", "serialize", "deserialize"]
categories = ["game-development", ]
readme = "README.md"
repository = "https://github.com/Fabinistere/yml_dialog"
homepage = "fabinistere.github.io"
documentation = "https://docs.rs/yml_dialog"
license = "MIT OR Apache-2.0"
edition = "2021"
exclude = [
"assets/*",
"examples/test_dialog.yml",
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
bevy = "0.10" # version = "0.10", git = "https://github.com/bevyengine/bevy", rev="9788b386c7846c99978ab5c1a33698ec5a471d84", default-features = false
serde_yaml = "0.9"
rand = "0.8.5"
# ----------- Debug -----------
log = "0.4.17"
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1