From 65946147a77e066dbd327a42766ef20ce7c3bdfe Mon Sep 17 00:00:00 2001 From: cscherr Date: Wed, 4 Jun 2025 14:31:11 +0200 Subject: [PATCH] rm root bin --- Cargo.toml | 5 ++--- src/main.rs | 14 -------------- 2 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml index ffa541d..3436d91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,5 @@ [workspace] members = [ - ".", "crates/criterion-demo", "crates/cucumber-demo", "crates/panic-calm", @@ -33,7 +32,7 @@ members = [ "crates/iter-prod", "crates/tpdemo", "crates/graph", - "crates/sdl-idiot", + "crates/sdl-idiot", "minitree", ] default-members = ["."] @@ -44,7 +43,7 @@ serde = { version = "1.0.171", features = ["derive"] } serde_json = "1.0.102" libpt = { version = "0.5.1", features = ["full"] } -[package] +[workspace.package] name = "rs-basic" version = "0.2.1" edition = "2021" diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 6990258..0000000 --- a/src/main.rs +++ /dev/null @@ -1,14 +0,0 @@ -#![allow(clippy::disallowed_names)] -fn main() { - println!( - "SUCCESS!!! -This is the default executable! It does not do much, use another executable. - -Select your target like this: -`cargo run --bin $TARGET` - -To see a list of all runnable binaries, you can use the following command. -`cargo run --bin` -" - ); -}