Skip to content

Commit

Permalink
⬆️ marlu, rubbl, ndarray, byteorder
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Aug 14, 2024
1 parent 1e362d1 commit e13ae89
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 40 deletions.
86 changes: 52 additions & 34 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ cfitsio-static = ["marlu/cfitsio-static"]
all-static = ["cfitsio-static"]

[dependencies]
byteorder = "1.4.3"
byteorder = "1.5.0"
cfg-if = "1.0.0"
derive_builder = "0.11.1"
indicatif = { version = "0.17.0", features = ["rayon"] }
itertools = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.0"
marlu = "0.11.0"
marlu = "0.12.0"
regex = "1.4.0"
thiserror = "1.0.0"

Expand All @@ -64,8 +64,8 @@ csv = "1.1"
float-cmp = "0.9"
glob = "0.3"
lexical = "6.0"
marlu = { version = "0.11.0", features = ["approx"] }
ndarray = { version = "0.15.4", features = ["approx-0_5"] }
marlu = { version = "0.12.0", features = ["approx"] }
ndarray = { version = "0.16.0", features = ["approx"] }
tempfile = "3.3"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3961,8 +3961,8 @@ mod tests_aoflagger_flagset {
assert_eq!(left_header.num_rows, right_header.num_rows);
assert_eq!(left_header.num_rows as usize, num_rows);

let left_flags = $left_flagset.read_flags().unwrap().into_raw_vec();
let right_flags = $right_flagset.read_flags().unwrap().into_raw_vec();
let (left_flags, _) = $left_flagset.read_flags().unwrap().into_raw_vec_and_offset();
let (right_flags, _) = $right_flagset.read_flags().unwrap().into_raw_vec_and_offset();
assert_eq!(left_flags.len(), right_flags.len());
assert_eq!(
left_flags.len(),
Expand Down

0 comments on commit e13ae89

Please sign in to comment.