# 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] edition = "2021" name = "refimage" version = "1.0.0-pre0" authors = ["Sunip K. Mukherjee "] build = false include = [ "/LICENSE-APACHE", "/LICENSE-MIT", "/README.MD", "/CHANGELOG.MD", "/src/", "/examples/", "/benches/", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Imaging library. Provides basic image processing and encoders/decoders for common image formats." homepage = "https://github.com/sunipkm/refimage" documentation = "https://docs.rs/refimage" readme = "README.MD" categories = [ "multimedia::images", "multimedia::encoding", ] license = "MIT OR Apache-2.0" repository = "https://github.com/sunipkm/refimage" resolver = "2" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "refimage" path = "src/lib.rs" [[example]] name = "test_debayer" path = "examples/test_debayer.rs" [[example]] name = "test_flow" path = "examples/test_flow.rs" required-features = ["full"] [[bench]] name = "cast_u8" path = "benches/cast_u8.rs" [[bench]] name = "luma_par" path = "benches/luma_par.rs" [dependencies.bytemuck] version = "1.16" features = [ "aarch64_simd", "wasm_simd", "extern_crate_alloc", ] [dependencies.chrono] version = "0.4" features = ["std"] default-features = false [dependencies.crc32fast] version = "1.4" [dependencies.fitsio] version = "0.21" optional = true [dependencies.image] version = "0.25" optional = true default-features = false [dependencies.itertools] version = "0.13" [dependencies.num-traits] version = "0.2" [dependencies.rayon] version = "1.10" optional = true [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.thiserror] version = "1.0" [dev-dependencies.bincode] version = "1.3" [dev-dependencies.color-backtrace] version = "0.6" [dev-dependencies.paste] version = "1.0" [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde-generate] version = "0.26" [dev-dependencies.serde-reflection] version = "0.4" [dev-dependencies.serde_json] version = "1.0" [features] default = ["rayon"] fitsio = ["dep:fitsio"] full = [ "default", "fitsio", "image", ] image = ["dep:image"] rayon = ["dep:rayon"]