Skip to content

Commit

Permalink
properly marked un-benchmarkable targets as such
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 8, 2023
1 parent f069d5e commit 22c2f94
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/re_analytics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ version.workspace = true
[package.metadata.docs.rs]
all-features = true

[lib]
bench = false

[dependencies]
# Internal dependencies:
Expand Down
4 changes: 4 additions & 0 deletions examples/rust/api_demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ rust-version.workspace = true
license.workspace = true
publish = false

[[bin]]
name = "api_demo"
bench = false

[dependencies]
rerun = { workspace = true, features = ["web_viewer"] }

Expand Down
4 changes: 4 additions & 0 deletions examples/rust/dna/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ rust-version.workspace = true
license.workspace = true
publish = false

[[bin]]
name = "dna"
bench = false

[dependencies]
rerun.workspace = true

Expand Down
4 changes: 4 additions & 0 deletions examples/rust/minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@ rust-version.workspace = true
license.workspace = true
publish = false

[[bin]]
name = "minimal"
bench = false

[dependencies]
rerun.workspace = true
3 changes: 3 additions & 0 deletions examples/rust/objectron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ rust-version.workspace = true
license.workspace = true
publish = false

[[bin]]
name = "objectron"
bench = false

[dependencies]
rerun = { workspace = true, features = ["web_viewer"] }
Expand Down
4 changes: 4 additions & 0 deletions examples/rust/raw_mesh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ rust-version.workspace = true
license.workspace = true
publish = false

[[bin]]
name = "raw_mesh"
bench = false

[dependencies]
rerun = { workspace = true, features = ["web_viewer"] }

Expand Down

0 comments on commit 22c2f94

Please sign in to comment.