Move subcommand defs into command files
Showing
- CHANGELOG.md 4 additions, 0 deletionsCHANGELOG.md
- Cargo.lock 249 additions, 88 deletionsCargo.lock
- Cargo.toml 21 additions, 12 deletionsCargo.toml
- src/cli_args.rs 68 additions, 142 deletionssrc/cli_args.rs
- src/commands/extrude.rs 102 additions, 64 deletionssrc/commands/extrude.rs
- src/commands/flip.rs 34 additions, 17 deletionssrc/commands/flip.rs
- src/commands/mod.rs 7 additions, 7 deletionssrc/commands/mod.rs
- src/commands/palette.rs 120 additions, 124 deletionssrc/commands/palette.rs
- src/commands/pipeline.rs 112 additions, 193 deletionssrc/commands/pipeline.rs
- src/commands/remap.rs 55 additions, 36 deletionssrc/commands/remap.rs
- src/commands/rotate.rs 31 additions, 17 deletionssrc/commands/rotate.rs
- src/commands/scale.rs 34 additions, 14 deletionssrc/commands/scale.rs
- src/format.rs 8 additions, 6 deletionssrc/format.rs
- src/main.rs 0 additions, 20 deletionssrc/main.rs
- src/utils.rs 47 additions, 7 deletionssrc/utils.rs
... | ... | @@ -3,19 +3,28 @@ name = "crunch" |
version = "0.4.0" | ||
edition = "2021" | ||
license = "GPL-3" | ||
description = "Command line asset manipulation, set up a pipeline once and run it against all of your files" | ||
authors = [ | ||
"Louis Capitanchik <louis@microhacks.co.uk>" | ||
] | ||
[dependencies] | ||
anyhow = "1.0.53" | ||
clap = { version = "3.0.14", features = ["derive"] } | ||
clap = { version = "4.1.4", features = ["derive"] } | ||
env_logger = "0.10.0" | ||
log = "0.4.17" | ||
anyhow = "1.0.69" | ||
thiserror = "1.0.38" | ||
deltae = "0.3.0" | ||
env_logger = "0.9.0" | ||
glam = "0.20.5" | ||
glam = "0.22.0" | ||
image = "0.24" | ||
lab = "0.11.0" | ||
log = "0.4.14" | ||
num-traits = "0.2.14" | ||
rayon = "1.5.1" | ||
thiserror = "1.0.30" | ||
serde = { version = "1.0.131", features = ["derive"] } | ||
toml = "0.5.9" | ||
serde_json = "1.0.81" | ||
glob = "0.3.0" | ||
num-traits = "0.2.15" | ||
rayon = "1.6.1" | ||
toml = "0.7.1" | ||
serde = { version = "1.0.152", features = ["derive"] } | ||
serde_json = "1.0.92" | ||
glob = "0.3.1" |
Please register or sign in to comment