forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 823 Bytes
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
[package]
name = "custom_callback"
version = "0.30.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",
] }