chore: initialize a Cargo workspace with a cli-clap and a multibinary package to align with how I want the project to work (wherein features can be turned off to optimize the resulting binary, and there are different interfaces (GUI vs TUI vs CLI vs just an API vs just a web app or any permutation of these) to choose from depending on the occasion)

This commit is contained in:
J / Jacob Babich
2024-09-24 17:36:12 -04:00
parent dafe2c06bf
commit 2f317dda37
7 changed files with 276 additions and 0 deletions

4
multibinary/src/main.rs Normal file
View File

@@ -0,0 +1,4 @@
fn main() {
#[cfg(feature = "cli-clap")]
ac_qu_ai_nt_cli_clap::main();
}