-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
65 lines (58 loc) · 1.36 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
63
64
65
[package]
name = "dify"
authors = ["Jihchi Lee <[email protected]>"]
version = "0.7.4"
description = "A fast pixel-by-pixel image comparison tool in Rust"
homepage = "https://github.com/jihchi/dify"
documentation = "https://docs.rs/dify"
repository = "https://github.com/jihchi/dify.git"
readme = "README.md"
license = "MIT"
edition = "2018"
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE.md",
]
keywords = [
"image",
"diff",
"compare",
"changes",
"assert",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
[package.metadata.release]
pre-release-commit-message = "Bump version to {{version}}"
[features]
default = ["image/default"]
### BEGIN
# Fix an issue where `cargo bench -- --save-baseline` does not work.
# For more details, please see https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
[[bin]]
name = "dify"
path = "src/main.rs"
bench = false
[lib]
bench = false
### END
[[bench]]
name = "benchmark"
path = "./benches/benchmark.rs"
harness = false
[dev-dependencies]
criterion = "0.3.4"
assert_cmd = "2.0.0"
assert_fs = "1.0.1"
predicates = "2.0.1"
image = { version = "0.25.2", default-features = true }
[dependencies]
image = { version = "0.25.2", default-features = false }
getopts = "0.2.21"
anyhow = "1.0.40"
colored = "2.0.0"
rayon = "1.5.0"