@sjcrh/proteinpaint-rust 2.108.3-0 → 2.111.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 +2 -2
- package/src/gdcmaf.rs +1 -3
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.
|
|
2
|
+
"version": "2.111.0",
|
|
3
3
|
"name": "@sjcrh/proteinpaint-rust",
|
|
4
4
|
"description": "Rust-based utilities for proteinpaint",
|
|
5
5
|
"main": "index.js",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"tape": "^5.2.2"
|
|
40
40
|
},
|
|
41
|
-
"pp_release_tag": "v2.
|
|
41
|
+
"pp_release_tag": "v2.111.0"
|
|
42
42
|
}
|
package/src/gdcmaf.rs
CHANGED
|
@@ -13,12 +13,11 @@
|
|
|
13
13
|
use flate2::read::GzDecoder;
|
|
14
14
|
use flate2::write::GzEncoder;
|
|
15
15
|
use flate2::Compression;
|
|
16
|
-
use serde_json::Value;
|
|
16
|
+
use serde_json::{Value};
|
|
17
17
|
use std::path::Path;
|
|
18
18
|
use futures::StreamExt;
|
|
19
19
|
use std::io::{self,Read,Write};
|
|
20
20
|
|
|
21
|
-
|
|
22
21
|
// Struct to hold error information
|
|
23
22
|
#[derive(serde::Serialize)]
|
|
24
23
|
struct ErrorEntry {
|
|
@@ -202,6 +201,5 @@ async fn main() -> Result<(),Box<dyn std::error::Error>> {
|
|
|
202
201
|
// Manually flush stdout and stderr
|
|
203
202
|
io::stdout().flush().expect("Failed to flush stdout");
|
|
204
203
|
io::stderr().flush().expect("Failed to flush stderr");
|
|
205
|
-
|
|
206
204
|
Ok(())
|
|
207
205
|
}
|