[package] name = "mwa_rust_core" version = "0.2.0" authors = ["Christopher H. Jordan ", "Derwent McElhinney "] edition = "2018" license = "MPL-2.0" readme = "README.md" description = "Convenience Rust code that handles coordinate transformations, Jones matrices, etc. for the Murchison Widefield Array (MWA) radio telescope." repository = "https://github.com/MWATelescope/mwa_rust_core" homepage = "https://github.com/MWATelescope/mwa_rust_core" exclude = [".github/*"] [features] default = ["mwalib"] erfa-static = ["erfa-sys/static"] cfitsio-static = ["mwalib/cfitsio-static"] all-static = ["erfa-static", "cfitsio-static"] [dependencies] erfa-sys = "0.1.*" hifitime = "2.2.*" log = "0.4.*" num-complex = ">=0.3,<0.5" num-traits = "0.2.*" rayon = "~1" thiserror = "1.0.*" # Needed to implement AbsDiffEq on the Jones type. Makes testing much easier! approx = { version = ">=0.4,<0.6", features = ["num-complex"] } mwalib = { version = ">=0.9.4", optional = true } [dev-dependencies] criterion = "0.3.*" # ndarray 0.14.* depends on approx 0.4.0, which in turn uses num-complex 0.3.0. # Forcing the versions here means that ndarrays of complex numbers can be # tested! approx = { version = "0.4.0", features = ["num-complex"] } ndarray = { version = "0.14.*", features = ["approx"] } num-complex = "0.3.0" [[bench]] name = "bench" harness = false