7
7
//LICENSE All rights reserved.
8
8
//LICENSE
9
9
//LICENSE Use of this source code is governed by the MIT license that can be found in the LICENSE file.
10
- use crate :: command:: stop:: stop_postgres;
11
- use crate :: command:: version:: pgrx_default;
12
- use crate :: CommandExecute ;
10
+ use std:: collections:: HashMap ;
11
+ use std:: fs:: File ;
12
+ use std:: io:: { Read , Write } ;
13
+ use std:: num:: NonZeroUsize ;
14
+ use std:: path:: { Path , PathBuf } ;
15
+ use std:: process:: { Command , Stdio } ;
16
+ use std:: str:: FromStr ;
17
+ use std:: sync:: OnceLock ;
18
+
13
19
use bzip2:: bufread:: BzDecoder ;
14
20
use eyre:: { bail, eyre, WrapErr } ;
15
21
use owo_colors:: OwoColorize ;
@@ -20,16 +26,10 @@ use pgrx_pg_config::{
20
26
use tar:: Archive ;
21
27
use url:: Url ;
22
28
23
- use std:: collections:: HashMap ;
24
- use std:: fs:: File ;
25
- use std:: io:: { Read , Write } ;
26
- use std:: num:: NonZeroUsize ;
27
- use std:: path:: { Path , PathBuf } ;
28
- use std:: process:: { Command , Stdio } ;
29
- use std:: str:: FromStr ;
30
- use std:: sync:: OnceLock ;
31
-
32
- use super :: generate_ftp_download_url;
29
+ use crate :: command:: generate_ftp_download_url;
30
+ use crate :: command:: stop:: stop_postgres;
31
+ use crate :: command:: version:: pgrx_default;
32
+ use crate :: CommandExecute ;
33
33
34
34
static PROCESS_ENV_DENYLIST : & [ & str ] = & [
35
35
"DEBUG" ,
0 commit comments