43 lines
823 B
TOML
43 lines
823 B
TOML
[package]
|
|
name = "custom_callback"
|
|
version = "0.35.0-alpha.1+dev"
|
|
edition = "2024"
|
|
rust-version = "1.92"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "custom_callback_viewer"
|
|
path = "src/viewer.rs"
|
|
|
|
[[bin]]
|
|
name = "custom_callback_app"
|
|
path = "src/app.rs"
|
|
|
|
[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",
|
|
] }
|
|
|
|
bincode.workspace = true
|
|
mimalloc.workspace = true
|
|
parking_lot.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = [
|
|
"io-util",
|
|
"macros",
|
|
"net",
|
|
"rt-multi-thread",
|
|
"signal",
|
|
"sync",
|
|
"time",
|
|
] }
|