-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
65 lines (55 loc) · 1.6 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 = "sic"
version = "0.22.4"
authors = ["Martijn Gribnau <[email protected]>"]
description = "Accessible image processing and conversion from the terminal (and a front-end for the 'image' crate)."
license = "MIT OR Apache-2.0"
repository = "https://github.com/foresterre/sic"
readme = "README.md"
exclude = [
".idea/*",
".vscode/*",
"*.iml",
".travis.yml",
"RELEASE_STEPS.md",
]
keywords = ["image", "converter", "cli", "front-end", "image-cli"]
categories = ["multimedia::images", "command-line-utilities"]
edition = "2021"
rust-version = "1.79"
[package.metadata.release]
tag-prefix = ""
[workspace]
members = [
"crates/sic_cli_ops",
"crates/sic_core",
"crates/sic_image_engine",
"crates/sic_io",
"crates/sic_parser",
"crates/sic_testing",
]
[dependencies]
sic_cli_ops = { version = "0.22.0", path = "crates/sic_cli_ops" }
sic_core = { version = "0.22.0", path = "crates/sic_core" }
sic_io = { version = "0.22.0", path = "crates/sic_io" }
sic_image_engine = { version = "0.22.0", path = "crates/sic_image_engine" }
sic_parser = { version = "0.22.0", path = "crates/sic_parser" }
anyhow = "1"
atty = "0.2.14"
clap = "2.34.0"
globwalk = "0.8.1"
open = "5.3.1"
[dev-dependencies]
clap = "2.34.0" # for examples/gen_completions.rs
parameterized = "2.0.0"
yare = "3"
[build-dependencies]
[features]
default = ["imageproc-ops", "nasm"]
imageproc-ops = ["sic_core/imageproc-ops", "sic_cli_ops/imageproc-ops", "sic_image_engine/imageproc-ops", "sic_parser/imageproc-ops"]
nasm = ["sic_core/nasm"]
output-test-images = []
[profile.release]
panic = "abort"
lto = true
codegen-units = 1