forked from rerun-io/rerun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (29 loc) · 1018 Bytes
/
Cargo.toml
File metadata and controls
39 lines (29 loc) · 1018 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
[package]
name = "snippets"
version.workspace = true
edition = "2024"
rust-version.workspace = true
license.workspace = true
publish = false
[lints]
workspace = true
[features]
## Enables the web viewer in the rerun-sdk crate.
##
## This adds quite a bit of build time to the snippets test while being used only by
## very few snippets (as of writing only by `howto/serve_web_viewer`) which is why we don't enable it by default.
web_viewer = ["rerun/web_viewer"]
[dependencies]
rerun = { path = "../../crates/top/rerun" }
crossbeam.workspace = true
itertools.workspace = true
ndarray.workspace = true
rand = { workspace = true, features = ["std", "std_rng"] }
rand_distr = { workspace = true, features = ["std"] }
similar-asserts.workspace = true
[build-dependencies]
re_build_tools.workspace = true
itertools.workspace = true
[package.metadata.cargo-shear]
# false positives because they aren't used until codegen is run:
ignored = ["itertools", "ndarray", "rand", "rand_distr", "rerun", "similar-asserts"]