-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 866 Bytes
/
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
[package]
authors = ["Kornel <[email protected]>"]
name = "mss_saliency"
include = ["src/**/*", "Cargo.toml", "README.md"]
description = "Detection of visually salient image regions using Maximum Symmetric Surround algorithm"
homepage = "https://infoscience.epfl.ch/record/151989"
documentation = "https://docs.rs/mss_saliency"
repository = "https://github.com/kornelski/mss_saliency"
readme = "README.md"
keywords = ["saliency", "entropy", "segmentation"]
license = "MIT"
categories = ["multimedia::images"]
version = "1.1.1"
edition = "2021"
[dependencies]
imgref = "1.10"
rgb = { version = "0.8.47", default-features = false }
summed-area = "1.0"
[dev-dependencies]
lodepng = "3.10"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[badges]
maintenance = { status = "passively-maintained" }