-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (48 loc) · 1.23 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
[package]
name = "make_it_braille"
version = "0.6.0"
edition = "2021"
authors = ["Juliapixel <[email protected]>"]
license = "MIT"
description = "A CLI tool and library to manipulate unicode braille images"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[bin]]
name = "make_it_braille"
required-features = ["bin"]
[lib]
crate-type = ["lib"]
[dependencies]
clap = { version = "4.4", features = ["derive", "cargo"], optional = true }
env_logger = { version = "0.11", optional = true }
image = { version = "0.25", optional = true, default-features = false }
log = { version = "0.4", optional = true }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "rustls-tls", "gzip", "brotli", "deflate"], optional = true }
thiserror = { version = "2.0", optional = true }
[features]
default = ["image"]
bin = [
"dep:thiserror",
"dep:clap",
"dep:env_logger",
"dep:log",
"dep:log",
"dep:reqwest",
"dep:image",
"image/gif",
"image/jpeg",
"image/ico",
"image/png",
"image/pnm",
"image/tga",
"image/tiff",
"image/webp",
"image/bmp",
"image/hdr",
"image/dds",
"image/exr",
"image/qoi",
"image/avif"
]
image = ["dep:image"]