diff options
Diffstat (limited to 'tvix/store/src/bin')
-rw-r--r-- | tvix/store/src/bin/tvix-store.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tvix/store/src/bin/tvix-store.rs b/tvix/store/src/bin/tvix-store.rs index 8966be211fb2..feda586fcb46 100644 --- a/tvix/store/src/bin/tvix-store.rs +++ b/tvix/store/src/bin/tvix-store.rs @@ -1,5 +1,6 @@ use clap::Subcommand; use data_encoding::BASE64; +use std::io; use std::path::PathBuf; use tracing_subscriber::prelude::*; use tvix_store::blobservice::SledBlobService; @@ -60,7 +61,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { .with(if cli.json { Some( tracing_subscriber::fmt::Layer::new() - .with_writer(std::io::stdout.with_max_level(level)) + .with_writer(io::stdout.with_max_level(level)) .json(), ) } else { @@ -69,7 +70,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { .with(if !cli.json { Some( tracing_subscriber::fmt::Layer::new() - .with_writer(std::io::stdout.with_max_level(level)) + .with_writer(io::stdout.with_max_level(level)) .pretty(), ) } else { @@ -140,7 +141,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { let path_info = tokio::task::spawn_blocking(move || { io.import_path_with_pathinfo(&path_move) - .map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e.to_string())) + .map_err(|e| io::Error::new(io::ErrorKind::Other, e.to_string())) }) .await??; |