icns 0.4.0

A library for encoding/decoding Apple Icon Image (.icns) files.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
name = "icns"
version = "0.4.0"
authors = ["Matthew D. Steele <mdsteele@alum.mit.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for encoding/decoding Apple Icon Image (.icns) files."
readme = "README.md"
keywords = [
    "icns",
    "icon",
    "image",
]
license = "MIT"
repository = "https://github.com/mdsteele/rust-icns"

[features]
default = [
    "pngio",
    "jp2io",
]
jp2io = ["hayro-jpeg2000"]
pngio = ["png"]

[lib]
name = "icns"
path = "src/lib.rs"

[[example]]
name = "icns2png"
path = "examples/icns2png.rs"

[[example]]
name = "png2icns"
path = "examples/png2icns.rs"

[[example]]
name = "readicns"
path = "examples/readicns.rs"

[[test]]
name = "golden"
path = "tests/golden.rs"

[dependencies.byteorder]
version = "1"

[dependencies.hayro-jpeg2000]
version = "0.3.1"
features = [
    "std",
    "simd",
]
optional = true
default-features = false

[dependencies.png]
version = "0.18"
optional = true