@sjcrh/proteinpaint-rust 2.124.0 → 2.125.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.124.0",
2
+ "version": "2.125.0",
3
3
  "name": "@sjcrh/proteinpaint-rust",
4
4
  "type": "module",
5
5
  "description": "Rust-based utilities for proteinpaint",
@@ -39,5 +39,5 @@
39
39
  "devDependencies": {
40
40
  "tape": "^5.2.2"
41
41
  },
42
- "pp_release_tag": "v2.124.0"
42
+ "pp_release_tag": "v2.125.0"
43
43
  }
package/src/readHDF5.rs CHANGED
@@ -19,9 +19,9 @@
19
19
  use hdf5::types::{FixedAscii, VarLenAscii};
20
20
  use hdf5::{File, Result};
21
21
  use ndarray::Dim;
22
- use ndarray::{Array1, s};
22
+ use ndarray::{s, Array1};
23
23
  use rayon::prelude::*;
24
- use serde_json::{Map, Value, json};
24
+ use serde_json::{json, Map, Value};
25
25
  use std::io;
26
26
  use std::sync::Arc;
27
27
  use std::time::Instant;
package/src/test.rs DELETED
@@ -1,3 +0,0 @@
1
- fn main() {
2
- println!("Hello, world!");
3
- }