From 96ad725aeed148b93ae7db35e9277806902047f9 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 7 Feb 2026 16:41:39 +0100 Subject: [PATCH] Added comments for clarity in main function --- Cargo.lock | 4 ++++ Cargo.toml | 1 + src/Cargo.toml | 17 +++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 src/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock index f883653f..fe24174c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -560,6 +560,10 @@ version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +[[package]] +name = "src" +version = "6.5.0" + [[package]] name = "strsim" version = "0.11.1" diff --git a/Cargo.toml b/Cargo.toml index 4469b281..e3a42157 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ exclude = [ "tests/test_exercises", "dev", ] +members = ["src"] [workspace.package] version = "6.5.0" diff --git a/src/Cargo.toml b/src/Cargo.toml new file mode 100644 index 00000000..7d853fcc --- /dev/null +++ b/src/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "src" +version.workspace = true +authors.workspace = true +repository.workspace = true +license.workspace = true +edition.workspace = true +rust-version.workspace = true + +[dependencies] + +[[bin]] +name = "src" +path = "main.rs" + +[lints] +workspace = true