forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
103 lines (93 loc) · 3.76 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[workspace]
resolver = "2"
members = [
"crates/*",
"examples/rust/*",
"rerun_py",
"run_wasm",
"tests/rust/*",
]
[workspace.package]
authors = ["rerun.io <opensource@rerun.io>"]
edition = "2021"
homepage = "https://rerun.io"
include = ["../../LICENSE-APACHE", "../../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rerun-io/rerun"
rust-version = "1.67"
version = "0.2.0"
[workspace.dependencies]
# When using alpha-release, always use exact version, e.g. `version = "=0.x.y-alpha.z"
# This is because we treat alpha-releases as incompatible, but semver doesn't.
# In particular: if we compile rerun 0.3.0-alpha.0 we only want it to use
# re_log_types 0.3.0-alpha.0, NOT 0.3.0-alpha.4 even though it is newer and semver-compatible.
re_analytics = { path = "crates/re_analytics", version = "0.2.0" }
re_arrow_store = { path = "crates/re_arrow_store", version = "0.2.0" }
re_build_build_info = { path = "crates/re_build_build_info", version = "0.2.0" }
re_build_info = { path = "crates/re_build_info", version = "0.2.0" }
re_build_web_viewer = { path = "crates/re_build_web_viewer", version = "0.2.0" }
re_data_store = { path = "crates/re_data_store", version = "0.2.0" }
re_error = { path = "crates/re_error", version = "0.2.0" }
re_format = { path = "crates/re_format", version = "0.2.0" }
re_log = { path = "crates/re_log", version = "0.2.0" }
re_log_types = { path = "crates/re_log_types", version = "0.2.0" }
re_memory = { path = "crates/re_memory", version = "0.2.0" }
re_query = { path = "crates/re_query", version = "0.2.0" }
re_renderer = { path = "crates/re_renderer", version = "0.2.0" }
re_sdk = { path = "crates/re_sdk", version = "0.2.0" }
re_sdk_comms = { path = "crates/re_sdk_comms", version = "0.2.0" }
re_smart_channel = { path = "crates/re_smart_channel", version = "0.2.0" }
re_string_interner = { path = "crates/re_string_interner", version = "0.2.0" }
re_tensor_ops = { path = "crates/re_tensor_ops", version = "0.2.0" }
re_tuid = { path = "crates/re_tuid", version = "0.2.0" }
re_ui = { path = "crates/re_ui", version = "0.2.0" }
re_viewer = { path = "crates/re_viewer", version = "0.2.0" }
re_web_viewer_server = { path = "crates/re_web_viewer_server", version = "0.2.0" }
re_ws_comms = { path = "crates/re_ws_comms", version = "0.2.0" }
rerun = { path = "crates/rerun", version = "0.2.0" }
anyhow = "1.0"
arrow2 = "0.16"
arrow2_convert = "0.4.2"
clap = "4.0"
comfy-table = { version = "6.1", default-features = false }
ecolor = "0.21.0"
eframe = { version = "0.21.3", default-features = false }
egui = "0.21.0"
egui_dock = "0.4"
egui_extras = "0.21.0"
egui-wgpu = "0.21.0"
emath = "0.21.0"
epaint = "0.21.0"
glam = "0.22"
gltf = "1.1"
half = "2.0"
image = { version = "0.24", default-features = false }
lazy_static = "1.4"
macaw = "0.18"
mimalloc = "0.1.29"
ndarray = "0.15"
parking_lot = "0.12"
polars-core = "0.27.1"
polars-lazy = "0.27.1"
polars-ops = "0.27.1"
puffin = "0.14"
thiserror = "1.0"
time = "0.3"
tokio = "1.24"
wgpu = { version = "0.15", default-features = false }
wgpu-core = { version = "0.15", default-features = false }
[profile.dev]
opt-level = 1 # Make debug builds run faster
# Optimize all dependencies even in debug builds (does not affect workspace packages):
[profile.dev.package."*"]
opt-level = 2
[profile.release]
# debug = true # good for profilers
[profile.bench]
debug = true
[patch.crates-io]
# Try to avoid patching crates! It prevents us from publishing the crates on crates.io.
# If you do patch always prefer to patch to a commit on the trunk of the upstream repo.
# If that is not possible, patch to a branch that has a PR open on the upstream repo.
# As a last resport, patch with a commit to our own repository.
# ALWAYS document what PR the commit hash is part of, or when it was merged into the upstream trunk.