fits-header 0.3.3

Pure-Rust, MSVC-safe FITS header reader/writer: parse every card from a FITS file, CRUD single or multiple header keywords, then serialize back to a valid FITS object.
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]
edition = "2021"
rust-version = "1.74"
name = "fits-header"
version = "0.3.3"
build = false
include = [
    "src/**",
    "docs/**",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust, MSVC-safe FITS header reader/writer: parse every card from a FITS file, CRUD single or multiple header keywords, then serialize back to a valid FITS object."
documentation = "https://docs.rs/fits-header"
readme = "README.md"
keywords = [
    "fits",
    "astronomy",
    "header",
    "parser",
    "metadata",
]
categories = [
    "parser-implementations",
    "science",
    "encoding",
]
license = "Apache-2.0"
repository = "https://github.com/nightwatch-astro/fits-header"

[package.metadata.docs.rs]
all-features = true

[features]
serde = [
    "dep:serde",
    "time/serde",
]

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

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.time]
version = "0.3"
features = [
    "parsing",
    "formatting",
]

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde_json]
version = "1.0.150"

[dev-dependencies.time]
version = "0.3"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"