Skip to content

Commit

Permalink
Rebase into: Refactor each subcommand to its own file
Browse files Browse the repository at this point in the history
  • Loading branch information
tombh committed Dec 15, 2024
1 parent 95f248a commit f0fc1ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions crates/cargo-gpu/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
//! conduct other post-processing, like converting the `spv` files into `wgsl` files,
//! for example.
use builder::Build;
use build::Build;
use clap::Parser as _;
use install::Install;
use show::Show;
use toml::Toml;

mod builder;
mod build;
mod install;
mod show;
mod spirv;
Expand Down

0 comments on commit f0fc1ea

Please sign in to comment.