Skip to content

Commit 06702ef

Browse files
committed
⬆️ marlu0.13 rubbl0.8 casacore3.5 ndarray0.16
1 parent 6df8e82 commit 06702ef

File tree

4 files changed

+52
-44
lines changed

4 files changed

+52
-44
lines changed

Cargo.lock

Lines changed: 41 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwa_hyperbeam"
3-
version = "0.9.3"
3+
version = "0.10.0"
44
authors = [
55
"Christopher H. Jordan <christopherjordan87@gmail.com>",
66
"Jack L. B. Line <jack.line@curtin.edu.au>",
@@ -17,6 +17,10 @@ repository = "https://github.com/MWATelescope/mwa_hyperbeam"
1717
homepage = "https://github.com/MWATelescope/mwa_hyperbeam"
1818
exclude = [".github/*", "fee_pols.pdf"]
1919

20+
[package.metadata.docs.rs]
21+
features = ["hdf5-static"]
22+
targets = ["x86_64-unknown-linux-gnu"]
23+
2024
# Make a rust library, as well as static and C-compatible dynamic libraries
2125
# available as "libmwa_hyperbeam.a" and "libmwa_hyperbeam.so".
2226
[lib]
@@ -44,8 +48,8 @@ codegen-units = 1 # Set this to 1 in Cargo.toml to allow for maximum size reduct
4448
[dependencies]
4549
cfg-if = "1.0.0"
4650
hdf5 = "0.8.0"
47-
marlu = { version = "0.11.0", default-features = false }
48-
ndarray = "0.15.4"
51+
marlu = { version = "0.13.0", default-features = false }
52+
ndarray = "0.16.0"
4953
num-complex = "0.4.1"
5054
panic-message = "0.3.0"
5155
parking_lot = "0.12.0"
@@ -67,21 +71,17 @@ numpy = { version = "0.19.0", optional = true }
6771
[dev-dependencies]
6872
approx = { version = "0.5.0", features = ["num-complex"] }
6973
criterion = "0.5.1"
70-
marlu = { version = "0.11.0", default-features = false, features = ["approx"] }
74+
marlu = { version = "0.13.0", default-features = false, features = ["approx"] }
7175
serial_test = "2.0.0"
7276

73-
ndarray = { version = "0.15.4", features = ["approx-0_5"] }
77+
ndarray = { version = "0.16.0", features = ["approx"] }
7478

7579
[build-dependencies]
7680
cbindgen = { version = "0.25.0", default-features = false }
7781
cfg-if = "1.0.0"
7882
cc = { version = "1.0.0", features = ["parallel"], optional = true }
7983
hip-sys = { version = "0.1.0", optional = true }
8084

81-
[package.metadata.docs.rs]
82-
features = ["hdf5-static"]
83-
targets = ["x86_64-unknown-linux-gnu"]
84-
8585
[[bench]]
8686
name = "bench"
8787
harness = false

src/python/analytic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
//! Python interface to hyperbeam analytic beam code.
66
7+
use self::ndarray::prelude::*;
78
use marlu::c64;
8-
use ndarray::prelude::*;
99
use numpy::*;
1010
use pyo3::prelude::*;
1111

src/python/fee.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
use std::path::PathBuf;
88

9-
use ndarray::prelude::*;
9+
use self::ndarray::prelude::*;
1010
use num_complex::Complex64 as c64;
1111
use numpy::*;
1212
use pyo3::prelude::*;

0 commit comments

Comments
 (0)