Skip to content

Commit

Permalink
refactor: sort enum
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexD10S committed May 9, 2024
1 parent 7d4dac5 commit 251a7c9
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions crates/pop-cli/src/commands/install/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,42 +10,42 @@ use tokio::{fs, process::Command};

#[derive(Display)]
pub enum DEPENDENCIES {
#[strum(serialize = "homebrew")]
Homebrew,
#[strum(serialize = "protobuf")]
Protobuf,
#[strum(serialize = "openssl")]
Openssl,
#[strum(serialize = "rustup")]
Rustup,
#[strum(serialize = "build-essential")]
BuildEssential,
#[strum(serialize = "clang")]
Clang,
#[strum(serialize = "clang-devel")]
ClangDevel,
#[strum(serialize = "cmake")]
Cmake,
#[strum(serialize = "curl")]
Curl,
#[strum(serialize = "gcc")]
Gcc,
#[strum(serialize = "git")]
Git,
#[strum(serialize = "clang")]
Clang,
#[strum(serialize = "homebrew")]
Homebrew,
#[strum(serialize = "libclang-dev")]
LibClang,
#[strum(serialize = "libssl-dev")]
Libssl,
#[strum(serialize = "make")]
Make,
#[strum(serialize = "openssl")]
Openssl,
#[strum(serialize = "openssl-devel")]
OpenSslDevel,
#[strum(serialize = "openssl-1.0")]
Openssl1,
#[strum(serialize = "libssl-dev")]
Libssl,
#[strum(serialize = "protobuf-compiler")]
ProtobufCompiler,
#[strum(serialize = "pkg-config")]
PkgConfig,
#[strum(serialize = "gcc")]
Gcc,
#[strum(serialize = "build-essential")]
BuildEssential,
#[strum(serialize = "libclang-dev")]
LibClang,
#[strum(serialize = "openssl-devel")]
OpenSslDevel,
#[strum(serialize = "clang-devel")]
ClangDevel,
#[strum(serialize = "protobuf")]
Protobuf,
#[strum(serialize = "protobuf-compiler")]
ProtobufCompiler,
#[strum(serialize = "rustup")]
Rustup,
}

#[derive(Args)]
Expand Down

0 comments on commit 251a7c9

Please sign in to comment.