Skip to content

Commit

Permalink
rust lints, update pollster, update bit-vec
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Nov 19, 2024
1 parent 9f844ce commit 131548e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
16 changes: 5 additions & 11 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -946,15 +946,9 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
dependencies = [
"bit-vec 0.8.0",
"bit-vec",
]

[[package]]
name = "bit-vec"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22"

[[package]]
name = "bit-vec"
version = "0.8.0"
Expand Down Expand Up @@ -5890,7 +5884,7 @@ dependencies = [
"glam",
"image",
"itertools 0.13.0",
"pollster 0.3.0",
"pollster 0.4.0",
"rand",
"re_log",
"re_math",
Expand Down Expand Up @@ -6394,7 +6388,7 @@ dependencies = [
name = "re_video"
version = "0.20.1-alpha.2"
dependencies = [
"bit-vec 0.7.0",
"bit-vec",
"cfg_aliases 0.2.1",
"criterion",
"crossbeam",
Expand Down Expand Up @@ -6501,7 +6495,7 @@ dependencies = [
"ahash",
"anyhow",
"arboard",
"bit-vec 0.7.0",
"bit-vec",
"bitflags 2.6.0",
"bytemuck",
"directories",
Expand Down Expand Up @@ -9254,7 +9248,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e0c68e7b6322a03ee5b83fcd92caeac5c2a932f6457818179f4652ad2a9c065"
dependencies = [
"arrayvec",
"bit-vec 0.8.0",
"bit-vec",
"bitflags 2.6.0",
"cfg_aliases 0.1.1",
"document-features",
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ arrow2 = { package = "re_arrow2", version = "0.17" }
async-executor = "1.0"
backtrace = "0.3"
bincode = "1.3"
bit-vec = "0.7"
bit-vec = "0.8"
bitflags = { version = "2.4", features = ["bytemuck"] }
blackbox = "0.2.0"
bytemuck = { version = "1.18", features = ["extern_crate_alloc"] }
Expand Down Expand Up @@ -232,7 +232,7 @@ pico-args = "0.5"
ply-rs = { version = "0.1", default-features = false }
poll-promise = "0.3"
polling = "3.7.3"
pollster = "0.3"
pollster = "0.4"
prettyplease = "0.2"
proc-macro2 = { version = "1.0", default-features = false }
profiling = { version = "1.0.12", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/viewer/re_viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ strum_macros.workspace = true
wasm-bindgen-futures.workspace = true
# NOTE: `rerun_js/web-viewer/build-wasm.mjs` is HIGHLY sensitive to changes in `wasm-bindgen`.
# Whenever updating `wasm-bindgen`, update this and the broader dependency specifications in
# the root `/Cargo.toml`, and make sure that the the output of `pixi run js-build-base` still works.
# the root `/Cargo.toml`, and make sure that the output of `pixi run js-build-base` still works.
wasm-bindgen = "=0.2.95"
web-sys = { workspace = true, features = [
"History",
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ skip = [
{ name = "pulldown-cmark" }, # Build-dependency via `ply-rs` (!). TODO(emilk): use a better crate for .ply parsing
{ name = "raw-window-handle" }, # Pretty small crate; some crates still on old version
{ name = "redox_syscall" }, # Plenty of versions in the wild
{ name = "pollster" }, # rfd is still on 0.3, but
]
skip-tree = [
{ name = "cargo-run-wasm" }, # Dev-tool
Expand Down

0 comments on commit 131548e

Please sign in to comment.