Format cargo.toml using prettier
This commit is contained in:
parent
f5053f65bb
commit
7f6fe08b06
1 changed files with 3 additions and 13 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -1,16 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
authors = ["Joshua Holmer <jholmer.in@gmail.com>"]
|
||||||
categories = [
|
categories = ["command-line-utilities", "compression"]
|
||||||
"command-line-utilities",
|
|
||||||
"compression",
|
|
||||||
]
|
|
||||||
description = "A lossless PNG compression optimizer"
|
description = "A lossless PNG compression optimizer"
|
||||||
documentation = "https://docs.rs/oxipng"
|
documentation = "https://docs.rs/oxipng"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
exclude = [
|
exclude = ["tests/*", "bench/*"]
|
||||||
"tests/*",
|
|
||||||
"bench/*",
|
|
||||||
]
|
|
||||||
homepage = "https://github.com/shssoichiro/oxipng"
|
homepage = "https://github.com/shssoichiro/oxipng"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "oxipng"
|
name = "oxipng"
|
||||||
|
|
@ -72,11 +66,7 @@ version = "^0.2.2"
|
||||||
rustc_version = "0.4"
|
rustc_version = "0.4"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
binary = [
|
binary = ["clap", "wild", "stderrlog"]
|
||||||
"clap",
|
|
||||||
"wild",
|
|
||||||
"stderrlog",
|
|
||||||
]
|
|
||||||
default = ["binary", "filetime", "parallel", "libdeflater", "zopfli"]
|
default = ["binary", "filetime", "parallel", "libdeflater", "zopfli"]
|
||||||
parallel = ["rayon", "indexmap/rayon"]
|
parallel = ["rayon", "indexmap/rayon"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue