Skip to content

Commit

Permalink
overhaul of server and lockfile handling
Browse files Browse the repository at this point in the history
  • Loading branch information
dxbednarczyk committed Feb 8, 2024
1 parent 2255876 commit fecae12
Show file tree
Hide file tree
Showing 9 changed files with 286 additions and 119 deletions.
192 changes: 145 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ clap = { version = "4.4", features = ["derive", "cargo"] }
once_cell = "1.19"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
strum = "0.26"
strum_macros = "0.26"
tee = { git = "https://github.com/fredrik-hammar/tee.git", branch = "master" }
toml = "0.8"
ureq = { version = "2.9", features = ["json"] }
Expand Down
3 changes: 2 additions & 1 deletion src/loader/mod.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use clap::Subcommand;
use strum_macros::VariantNames;

mod fabric;
mod forge;
mod paper;

#[derive(Debug, Subcommand)]
#[derive(VariantNames, Debug, Subcommand)]
pub enum Loader {
/// Performance-optimized Spigot server
Paper {
Expand Down
Loading

0 comments on commit fecae12

Please sign in to comment.