-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
73 lines (65 loc) · 1.79 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
70
71
72
73
[package]
# About
name = "brick_bird"
description = "A colorful Flappy Bird clone written in Rust. Cross platform. Has own physic engine. Parallel."
# Ownership
authors = ["Tomasz Nehring"]
license-file = "./LICENSE.txt"
# Versions
version = "1.2.0"
edition = "2021"
# Websites
homepage = "https://github.com/Siiir/brick_bird/"
documentation = "https://docs.rs/brick_bird/1.2.0/fly_b/"
repository = "https://github.com/Siiir/brick_bird/"
[features]
dlink = ["bevy/dynamic_linking"]
[lib]
name = "fly_b"
[[bin]]
name = "brick_bird"
path = "./src/main.rs"
[dependencies]
# Vital implementations
bevy = { version = "0.13", default-features = false, features = [ "bevy_winit", "bevy_asset", "bevy_audio", "bevy_core_pipeline", "bevy_render", "bevy_sprite", "bevy_text", "bevy_ui", "multi-threaded", "x11", "webgl2", "mp3" ] }
# I might want to use these bevy features in near future: "bevy_gilrs", "default_font",
# Disabled default bevy features: "animation", "bevy_scene", "bevy_gltf", "bevy_pbr", "hdr", "png", "vorbis", "bevy_gizmos", "android_shared_stdcxx", "tonemapping_luts", "bevy_debug_stepping"
rand = "0.8.5"
# Conveniences
derive_more = "0.99.17"
tap = "1.0.1"
thiserror = "1.0.57"
# Enriching logic
num_enum = "0.7.2"
# Optimizing game crate
[profile.dev.package.brick_bird]
opt-level = 1
# Optimizing bevy libraries
[profile.dev.package.bevy]
opt-level = 3
[profile.fd_release]
inherits = "release"
opt-level = 3
debug = false
strip = "none"
lto = true
codegen-units = 1
incremental = false
panic = "abort"
[profile.fw_release]
inherits = "release"
opt-level = "s"
debug = false
strip = true
lto = true
codegen-units = 1
incremental = false
panic = "abort"
[profile.fast_d_comp]
inherits = "dev"
opt-level = 0
debug = 0
strip = "none"
lto = false
codegen-units = 256
incremental = true