From d6f9ea9d546bba7c8103a8271da3834acd994748 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 17 Apr 2024 09:46:08 -0400 Subject: [PATCH] Skip configuration loading while unused (#3092) ## Summary No benefit to doing this until it actually ships. --- crates/uv/src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/uv/src/main.rs b/crates/uv/src/main.rs index d62f9d28a..2259356b3 100644 --- a/crates/uv/src/main.rs +++ b/crates/uv/src/main.rs @@ -104,9 +104,6 @@ async fn run() -> Result { } }; - // Load the workspace settings. - let _ = uv_workspace::Workspace::find(env::current_dir()?)?; - let globals = cli.global_args; // Configure the `tracing` crate, which controls internal logging.