Files
2026-07-13 13:05:14 +08:00

27 lines
610 B
TOML

[package]
name = "custom_visualizer"
version = "0.35.0-alpha.1+dev"
edition = "2024"
rust-version = "1.92"
license = "MIT OR Apache-2.0"
publish = false
[features]
default = []
# Turn on if you want to share analytics with Rerun (e.g. callstacks on crashes).
analytics = ["rerun/analytics"]
[dependencies]
rerun = { path = "../../../crates/top/rerun", default-features = false, features = [
"native_viewer",
"run",
"server",
] }
# Need a direct dependency for `#[derive(bytemuck::Pod, bytemuck::Zeroable)]`.
bytemuck.workspace = true
# mimalloc is a much faster allocator:
mimalloc.workspace = true