Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
283 changes: 129 additions & 154 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ members = ["crates/maps", "crates/maps_io_ros", "crates/maps_rendering"]
default-members = ["crates/maps", "crates/maps_io_ros", "crates/maps_rendering"]
resolver = "2"

[workspace.package]
rust-version = "1.95"

[profile.kittest]
# kittests would be a bit too slow without optimizations.
inherits = "release"
Expand Down
12 changes: 6 additions & 6 deletions crates/maps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["science::robotics", "visualization", "gui", "multimedia::images"]
keywords = ["map", "navigation", "SLAM", "ROS", "egui"]
version = "1.11.0"
edition = "2024"
rust-version = "1.92.0"
rust-version.workspace = true
readme = "README.md"
build = "build.rs"
exclude = ["data/**/", "tests/snapshots"]
Expand All @@ -24,18 +24,18 @@ default = ["kittest_snapshots"]
built = { version = "0.7.5", features = ["git2"] }

[dev-dependencies]
egui_kittest = { version = "0.35.0", features = ["wgpu", "snapshot", "eframe"] }
egui_kittest = { version = "0.36.1", features = ["wgpu", "snapshot", "eframe"] }

# Dependencies of the main app crate.
[dependencies]
maps_io_ros = { workspace = true }
maps_rendering = { workspace = true }
confy = "0.6.1"
eframe = {version = "0.35.0", features = ["wgpu"]}
egui_dnd = "0.16.0"
eframe = {version = "0.36.1", features = ["wgpu"]}
egui_dnd = "0.17.0"
rfd = "0.17.2"
egui_plot = "0.36.0"
egui_tiles = "0.16.0"
egui_plot = "0.37.0"
egui_tiles = "0.17.0"
image = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/aligned_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/dense_grid_precision.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/empty_start.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/fixed_lens.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/fixed_lens_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/google_cartographer_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/measurement.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/nav2_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/panels_visible.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/pixel_test.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/reload_session_config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/stacked_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/tiles_view.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/value_colormap_rviz_costmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/value_colormap_rviz_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps/tests/snapshots/value_interpretations_wiki.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions crates/maps_io_ros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ categories = ["science::robotics", "data-structures", "filesystem", "multimedia:
keywords = ["map", "navigation", "SLAM", "ROS", "robotics"]
version = "0.4.0"
edition = "2024"
rust-version = "1.92.0"
rust-version.workspace = true
readme = "README.md"

[dependencies]
emath = { version = "0.35.0", features = ["serde"] }
emath = { version = "0.36.1", features = ["serde"] }
image = { workspace = true }
imageproc = { workspace = true }
lazy_static = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/maps_rendering/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ categories = ["graphics", "multimedia::images", "visualization", "science::robot
keywords = ["rendering", "texture", "image", "egui", "graphics"]
version = "0.5.0"
edition = "2024"
rust-version = "1.92.0"
rust-version.workspace = true
readme = "README.md"

[dependencies]
eframe = {version = "0.35.0", features = ["wgpu"]}
eframe = {version = "0.36.1", features = ["wgpu"]}
fast_image_resize = { version = "5.3.0", features = ["image"] }
image = { workspace = true }
imageproc = { workspace = true }
Expand Down
Loading