From 5d7f5b2234a2410decb133d011b2d058c5f1e1c4 Mon Sep 17 00:00:00 2001 From: Avril Date: Wed, 17 Feb 2021 21:55:10 +0000 Subject: [PATCH] remove TODO --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 628ad55..e5dac24 100644 --- a/src/main.rs +++ b/src/main.rs @@ -105,7 +105,7 @@ async fn normal(cfg: config::Config) -> eyre::Result<()> // `.2` indicates if we should compress while in normal write mode. Some((stream_fut, None, compress)) => { let stream = stream_fut.await?; - serial::write_async(stream, &graph, compress).await // TODO: raw version, how to implement? + serial::write_async(stream, &graph, compress).await .wrap_err(eyre!("Failed to serialise graph to stream"))?; }, #[cfg(feature="prealloc")] Some((_task_fut, Some(output_file), _)) => {