[package]
edition = "2021"
name = "fitskit"
version = "0.1.0"
authors = ["Steven Michael <ssmichael@gmail.com>"]
build = false
exclude = [
"CLAUDE.md",
"COMPRESSION_PLAN.md",
"scripts/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust FITS v4.0 reader/writer with tile-compression read and write"
documentation = "https://docs.rs/fitskit"
readme = "README.md"
keywords = [
"fits",
"astronomy",
"fits-file",
"compression",
"image",
]
categories = [
"science",
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/ssmichael1/fitskit"
[package.metadata.docs.rs]
all-features = true
[features]
gzip = ["dep:miniz_oxide"]
image = ["dep:image"]
[lib]
name = "fitskit"
path = "src/lib.rs"
[[test]]
name = "checksum"
path = "tests/checksum.rs"
[[test]]
name = "image_conv"
path = "tests/image_conv.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "sample_files"
path = "tests/sample_files.rs"
[dependencies.image]
version = "0.25"
optional = true
default-features = false
[dependencies.miniz_oxide]
version = "0.8"
optional = true
[profile.test]
opt-level = 3