-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
62 lines (52 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "show-image"
version = "0.14.0"
license = "BSD-2-Clause"
description = "quickly show images in a window for debugging"
edition = "2021"
repository = "https://github.com/robohouse-delft/show-image-rs"
documentation = "https://docs.rs/show-image"
readme = "README.md"
authors = [
"Maarten de Vries <[email protected]>",
"Hans Gaiser <[email protected]>",
"RoboHouse <[email protected]>",
]
keywords = ["image", "visualize", "show", "debug"]
categories = [
"development-tools::debugging",
"multimedia::images",
"visualization",
"gui",
]
[features]
default = ["macros"]
doc-only = ["tch/doc-only"]
full = ["save", "image", "tch", "raqote", "macros"]
macros = ["show-image-macros"]
nightly = []
save = ["tinyfiledialogs", "png", "log"]
[dependencies]
futures = { version = "0.3.28", default-features = false, features = ["executor"] }
glam = ">=0.20.0, <0.25.0"
image = { version = "0.25.0", optional = true, default-features = false }
indexmap = "2.0.0"
log = { version = "0.4.19", optional = true }
png = { version = "0.17.9", optional = true }
raqote = { version = "0.8.2", optional = true, default-features = false }
show-image-macros = { version = "=0.12.3", optional = true, path = "show-image-macros" }
tch = { version = ">=0.13.0, <0.16.0", optional = true }
tinyfiledialogs = { version = "3.9.1", optional = true }
wgpu = { version = "0.17.0", features = ["spirv"] }
winit = "0.28.6"
[dev-dependencies]
show-image = { path = ".", features = ["full"] }
assert2 = "0.3.11"
image = { version = "0.25.0", default-features = true }
env_logger = "0.10.0"
[build-dependencies]
rustc_version = "0.4.0"
[package.metadata.docs.rs]
features = ["doc-only", "full", "nightly"]
[workspace]
members = ["show-image-macros"]