Skip to content

Commit 9d74fc2

Browse files
committed
wip: reorder exports
1 parent dd6c2b2 commit 9d74fc2

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

cargo-pgrx/src/command/init.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,15 @@
77
//LICENSE All rights reserved.
88
//LICENSE
99
//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+
1319
use bzip2::bufread::BzDecoder;
1420
use eyre::{bail, eyre, WrapErr};
1521
use owo_colors::OwoColorize;
@@ -20,16 +26,10 @@ use pgrx_pg_config::{
2026
use tar::Archive;
2127
use url::Url;
2228

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;
3333

3434
static PROCESS_ENV_DENYLIST: &[&str] = &[
3535
"DEBUG",

0 commit comments

Comments
 (0)