From 14fbac39e33d1a06781d7080ebb98e2f4a8830ce Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Mon, 29 Sep 2025 16:33:50 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(project):=20add=20initial=20Ca?= =?UTF-8?q?rgo.toml=20for=20cull-gmail=20tool?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - introduce Cargo.toml with basic package metadata - set up project dependencies and include files --- Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1b59ddd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "cull-gmail" +description = """Tool to assist in culling emails from a +gmail account using the gmail API""" +version = "0.1.0" +authors = ["Jeremiah Russell "] +edition = "2024" +rust-version = "1.87" +keywords = ["gmail", "gmail-api", "management"] +categories = ["command-line-utilities"] +license = "MIT OR Apache-2.0" +readme = "README.md" +repository = "https://github.com/jerus-org/gen-changelog" +include = [ + "**/*.rs", + "Cargo.toml", + "README.md", + "LICENSE-MIT", + "LICENSE-APACHE", + "CHANGELOG.md", + "docs", +] + +[dependencies]