rust-fitsio
rust-fitsio copied to clipboard
FFI wrapper around cfitsio in Rust
We already have a feature to compile the source. Maybe we should fall back to this if the library cannot be found
Hello, Many thanks for providing this crate! Works fine under Linux (Fedora x86-64), but it fails when trying to use as a dependency (v. 0.15.0) under MSW 64-bit (MSYS2/MinGW, `rustc`...
We need to be clear on the use cases for the different `read_` methods for images. For example, `read_rows` should really be used for 2-d images, whereas `read_section` is more...
It seems when creating an array of n dimensions, it seems the axes are transposed. Also: consider range checks for the data. I have been able to write beyond the...
Currently to get to build on windows, we have to install `msys2` along with `pkg-config` and `cfitsio`. It would be nice to support the "standard" (if there is one) way...
While debugging [issue 118](https://github.com/mindriot101/rust-fitsio/issues/118) I suggested the use of the `bindgen` feature. This builds the bindings from scratch using `bindgen` on that platform, however there are issues with building under...
We can use a custom array type which mimics the `Vec` type, but includes the possibility for `NULL` values with a `bitvec`.
This tracks features that are missing from the library that should be included. This is not a complete list, but mostly features that _I_ use, or have been requested. *...
There is currently quite a lot of cloning going on. Remove these, if appropriate.