Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 195 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions fitsio-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ categories = ["external-ffi-bindings", "science"]
links = "cfitsio"

[dependencies]
rsfitsio = { version = "0.462.10", optional = true }

[features]
# Build, statically link, and use the vendored copy
Expand All @@ -26,6 +27,9 @@ src-cmake = ["cmake"]
# rather than use the manually-written bindings.
# Untested; use at one's peril.
with-bindgen = ["bindgen"]
# Use the pure-Rust `rsfitsio` crate as the provider of the CFITSIO-compatible C API.
# This backend avoids linking to a system-provided or vendored native `cfitsio` library.
backend-rsfitsio = ["dep:rsfitsio"]

[build-dependencies]
pkg-config = "0.3.16"
Expand Down
Loading
Loading