-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
50 lines (46 loc) · 1.29 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
[package]
name = "bevy_basic_portals"
version = "0.7.0"
edition = "2021"
categories = ["game-engines", "graphics", "rendering"]
keywords = ["bevy", "portal", "mirror", "gamedev"]
description = "A portal plugin for Bevy game engine"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/Selene-Amanita/bevy_basic_portals"
authors = ["Selene Amanita"]
[dependencies]
bevy_app = "0.15"
bevy_asset = "0.15"
bevy_color = "0.15"
bevy_core_pipeline = "0.15"
bevy_ecs = "0.15"
bevy_hierarchy = "0.15"
bevy_image = "0.15"
bevy_math = "0.15"
bevy_pbr = "0.15"
bevy_reflect = "0.15" # Could potentially be under a feature?
bevy_render = "0.15"
bevy_transform = "0.15"
bevy_window = "0.15"
tracing = { version = "0.1", default-features = false, features = ["std"] } # From bevy_utils
# All of the above can be replaced by:
# bevy = { version = "0.15", default-features = false, features = ["bevy_asset", "bevy_core_pipeline", "bevy_pbr", "bevy_render", ] }
[dev-dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_asset",
"bevy_core_pipeline",
"bevy_pbr",
"bevy_render",
"bevy_gilrs",
"bevy_window",
"bevy_winit",
"x11",
"tonemapping_luts",
"ktx2",
"zstd",
] }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3