-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
270fa8e
commit 23c8bb1
Showing
4 changed files
with
90 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
authors = ["caleb <[email protected]>"] | ||
repository = "https://github.com/etemesi254/zune-image/tree/dev/crates/zune-image" | ||
license = "MIT OR Apache-2.0 OR Zlib" | ||
keywords = ["image", "decoder", "encoder","image-processing"] | ||
keywords = ["image", "decoder", "encoder", "image-processing"] | ||
categories = ["multimedia::images"] | ||
description = "An image library, contiaining necessary capabilities to decode, manipulate and encode images" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
@@ -41,22 +41,22 @@ all = ["image_formats", "serde-support", "metadata", "threads", "simd", "log"] | |
# Core primitives | ||
zune-core = { path = "../zune-core", version = "^0.4.12" } | ||
# Images | ||
zune-png = { path = "../zune-png",version = "0.4", optional = true } | ||
zune-jpeg = { path = "../zune-jpeg",version = "0.4", optional = true } | ||
zune-ppm = { path = "../zune-ppm",version = "0.4", optional = true } | ||
zune-psd = { path = "../zune-psd",version = "0.4", optional = true } | ||
zune-farbfeld = { path = "../zune-farbfeld",version = "0.4", optional = true } | ||
zune-qoi = { path = "../zune-qoi",version = "0.4", optional = true } | ||
zune-jpegxl = { path = "../zune-jpegxl",version = "0.4", optional = true } | ||
zune-hdr = { path = "../zune-hdr",version = "0.4", optional = true } | ||
zune-bmp = { path = "../zune-bmp",version = "0.4", optional = true } | ||
zune-png = { path = "../zune-png", version = "0.4", optional = true } | ||
zune-jpeg = { path = "../zune-jpeg", version = "0.4", optional = true } | ||
zune-ppm = { path = "../zune-ppm", version = "0.4", optional = true } | ||
zune-psd = { path = "../zune-psd", version = "0.4", optional = true } | ||
zune-farbfeld = { path = "../zune-farbfeld", version = "0.4", optional = true } | ||
zune-qoi = { path = "../zune-qoi", version = "0.4", optional = true } | ||
zune-jpegxl = { path = "../zune-jpegxl", version = "0.4", optional = true } | ||
zune-hdr = { path = "../zune-hdr", version = "0.4", optional = true } | ||
zune-bmp = { path = "../zune-bmp", version = "0.4", optional = true } | ||
# Channel conversions in a safe way | ||
bytemuck = { version = "1.13", default-features = false } | ||
# Serializing info | ||
serde = { version = "1.0.152", optional = true } | ||
# External image APIs | ||
jpeg-encoder = { version = "0.5.1", optional = true, features = ["simd", "std"] } | ||
jxl-oxide = { version = "0.4.0", optional = true } | ||
jpeg-encoder = { version = "0.6.0", optional = true, features = ["simd", "std"] } | ||
jxl-oxide = { version = "0.8.0", optional = true } | ||
# metadata | ||
kamadak-exif = { version = "0.5.5", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters