forked from cds-astro/fitsrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API breaking: introduce a rust iterator over the HDU. Fix UB
- Loading branch information
1 parent
0f8d363
commit 21e2059
Showing
21 changed files
with
1,368 additions
and
1,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# CHANGELOG.md | ||
|
||
## 0.3.0 (unreleased) | ||
|
||
Features: | ||
|
||
- BREAKING API change. Provide an iterator over the HDU list | ||
|
||
Bugfixes: | ||
|
||
- Be more safe about UB [https://github.com/cds-astro/fitsrs/issues/5]. BITPIX > 8 needs to be read from BigEndian scheme. It is thus necessary to create a new owned vector from the reading bytes. For BITPIX = 8, data can be directly read from the memory without allocating anything. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fitsrs" | ||
version = "0.2.12" | ||
version = "0.3.0" | ||
authors = ["Matthieu Baumann <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of the FITS image parser" | ||
|
@@ -21,7 +21,7 @@ exclude = [ | |
byteorder = "1.4.2" | ||
serde = { version = "1.0.152", features = ["derive"] } | ||
serde_json = "1.0" | ||
futures = "0.3.24" | ||
futures = "0.3.31" | ||
async-trait = "0.1.66" | ||
quick-error = "2.0.1" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.