Skip to content

Commit

Permalink
chore: Change order of features
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Jan 21, 2025
1 parent 6d203fc commit 7d267d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions BUILD.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ fd -t directory out ./target/*/build/qrtool-*

Enable decoding from the DDS image. This is enabled by default.

`decode-from-exr`::

Enable decoding from the OpenEXR image. This is enabled by default.

`decode-from-ff`::

Enable decoding from the Farbfeld image. This is enabled by default.
Expand All @@ -63,10 +67,6 @@ fd -t directory out ./target/*/build/qrtool-*

Enable decoding from the JPEG image. This is enabled by default.

`decode-from-exr`::

Enable decoding from the OpenEXR image. This is enabled by default.

`decode-from-pnm`::

Enable decoding from the PNM image. This is enabled by default.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ predicates = "3.1.3"
default = [
"decode-from-bmp",
"decode-from-dds",
"decode-from-exr",
"decode-from-ff",
"decode-from-gif",
"decode-from-hdr",
"decode-from-ico",
"decode-from-jpeg",
"decode-from-exr",
"decode-from-pnm",
"decode-from-qoi",
"decode-from-svg",
Expand All @@ -64,12 +64,12 @@ default = [
]
decode-from-bmp = ["image/bmp"]
decode-from-dds = ["image/dds"]
decode-from-exr = ["image/exr"]
decode-from-ff = ["image/ff"]
decode-from-gif = ["image/gif"]
decode-from-hdr = ["image/hdr"]
decode-from-ico = ["image/ico"]
decode-from-jpeg = ["image/jpeg"]
decode-from-exr = ["image/exr"]
decode-from-pnm = ["image/pnm"]
decode-from-qoi = ["image/qoi"]
decode-from-svg = ["dep:is-svg", "dep:resvg"]
Expand Down

0 comments on commit 7d267d8

Please # to comment.