-
Notifications
You must be signed in to change notification settings - Fork 411
/
Copy pathCargo.toml
44 lines (38 loc) · 1.06 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
[package]
description = "Provides ui editors for Rerun component data for registration with the Rerun Viewer component ui registry."
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
name = "re_component_ui"
publish = true
readme = "README.md"
repository.workspace = true
rust-version.workspace = true
version.workspace = true
include.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true
[dependencies]
re_data_ui.workspace = true # Needed for `item_ui`.
re_data_source.workspace = true
re_format.workspace = true
re_log.workspace = true
re_log_types.workspace = true
re_tracing.workspace = true
re_types = { workspace = true, features = [
"egui_plot", # Needed to draw marker shapes.
] }
re_types_core.workspace = true
re_ui.workspace = true
re_viewer_context.workspace = true
arrow.workspace = true
egui_extras.workspace = true
egui_plot.workspace = true
egui.workspace = true
[dev-dependencies]
egui_kittest.workspace = true
itertools.workspace = true
nohash-hasher.workspace = true