-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 1.13 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
[workspace]
resolver = "2"
members = []
[package]
name = "point-cloud-bevy"
version = "0.1.0"
authors = ["DENIS BYKOV <[email protected]>"]
readme = "README.md"
description = """
Short description goes here.
"""
#license = "MIT OR Apache-2.0"
#repository = "https://github.com/z.bykov.d/point-cloud-bevy"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
default-run = "point-cloud-bevy"
[features]
default = ["editor"]
editor = ["bevy_editor_pls"]
[dependencies]
ply-rs = "*"
# Other crates of possible interest:
# https://bevyengine.org/assets/#assets
# https://gist.github.com/taurr/962ceb49472993e3092e97b07339c164
bevy = { version = "0.10.1", features = ["dynamic_linking"] }
bevy_editor_pls = { version = "0.4.0", optional = true }
[target.'cfg(target_arch="wasm32")'.dependencies]
bevy-web-resizer = "4.0" #[patch.crates-io]
#bevy = { git = "https://github.com/bevyengine/bevy", branch = "main" }
[dev-dependencies]
anyhow = "1.0"
#[patch.crates-io]
# Enable only a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3