-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (43 loc) · 1.53 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
[package]
name = "maps"
description = "Inspect, compare and align multiple grid maps in an intuitive & fast GUI"
authors = ["Michael Grupp"]
license = "Apache-2.0"
repository = "https://www.github.com/MichaelGrupp/maps"
homepage = "https://www.github.com/MichaelGrupp/maps"
categories = ["science::robotics", "visualization", "gui", "multimedia::images"]
keywords = ["map", "navigation", "SLAM", "ROS", "egui"]
version = "1.0.1"
edition = "2021"
readme = "README.md"
build = "build.rs"
exclude = ["data/doc", "test/snapshots"]
[features]
# kittest snapshot diff tests are enabled by default (see tests/).
# Disable when testing on a runner without wgpu support.
kittest_snapshots = []
default = ["kittest_snapshots"]
[build-dependencies]
built = { version = "0.7.5", features = ["git2"] }
[profile.kittest]
# kittests would be a bit too slow without optimizations.
inherits = "release"
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
confy = "0.6.1"
eframe = {version = "0.31.0", features = ["wgpu"]}
egui_extras = { version = "0.31.0", features = ["all_loaders", "serde"] }
egui-file-dialog = "0.9.0"
egui_kittest = { version = "0.31.0", features = ["wgpu", "snapshot", "eframe"] }
egui_tiles = "0.12.0"
env_logger = "0.11.5"
fast_image_resize = { version = "5.1.1", features = ["image"] }
image = { version = "0.25.5", features = ["jpeg", "png", "pnm"] }
imageproc = "0.25.0"
log = "0.4.22 "
serde = "1.0"
serde_yaml_ng = "0.10.0"
strum = "0.26.3"
strum_macros = "0.26.3"
toml = "0.8.19"
uuid = { version = "1.11.0", features = ["v4"] }