-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 999 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
[package]
name = "pcd-renderer"
version = "0.1.67"
edition = "2021"
[profile.dev]
opt-level = 1
[profile.release]
debug = 1
[profile.dev.package."*"]
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
arrow-array = "53.1.0"
arrow-schema = "53.1.0"
bevy = "0.14.2"
bevy_common_assets = { version = "0.11.0", features = ["json"] }
# Uncomment once bevy-inspector-egui moves to bevy 0.11.0, https://github.com/jakobhellermann/bevy-inspector-egui/pull/141
#bevy-inspector-egui = "0.18.3"
bytes = "1.7"
cfg-if = "1"
log = "0.4"
parquet = { version = "53.1.0", default-features = false, features = ["arrow", "arrow-schema", "arrow-array", "snap", "flate2", "brotli"] }
serde = { version = "1" }
serde_json = { version = "1", optional = true }
smooth-bevy-cameras = { version = "0.12" }
thiserror = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
console_log = "1.0.0"