forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (66 loc) · 2.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
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
[workspace]
resolver = "2"
members = [
"crates/*",
"rerun_py",
"run_wasm",
"examples/api_demo",
"examples/minimal",
"examples/objectron",
"examples/raw_mesh",
]
[workspace.package]
authors = ["rerun.io <[email protected]>"]
edition = "2021"
homepage = "http://rerun.io"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rerun-io/rerun"
rust-version = "1.67"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0"
arrow2 = "0.16"
arrow2_convert = "0.4"
comfy-table = { version = "6.1", default-features = false }
derive_more = "0.99"
ecolor = "0.21.0"
eframe = { version = "0.21.0", 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 = "0.24"
lazy_static = "1.4"
macaw = "0.18"
ndarray = "0.15"
polars-core = "0.27.1"
polars-lazy = "0.27.1"
polars-ops = "0.27.1"
puffin = "0.14"
reqwest = { version = "0.11", default-features = false }
thiserror = "1.0"
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.
# From 2023-02-11, includes the merge of https://github.com/DataEngineeringLabs/arrow2-convert/pull/98
arrow2_convert = { git = "https://github.com/DataEngineeringLabs/arrow2-convert", rev = "a270bb6da73afb20dba09f45ce27cd18ddf4838d" }