From d1beaded095078ab65aab4ce1b8e204f9d2c5e67 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Thu, 13 Feb 2025 09:35:07 -0800 Subject: [PATCH] Update Cargo.toml for packaging --- notmuch/Cargo.toml | 6 +++++- server/Cargo.toml | 4 ++++ shared/Cargo.toml | 4 ++++ web/Cargo.toml | 9 ++++----- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/notmuch/Cargo.toml b/notmuch/Cargo.toml index d97cf00..0cbb8f6 100644 --- a/notmuch/Cargo.toml +++ b/notmuch/Cargo.toml @@ -3,7 +3,11 @@ name = "notmuch" version = "0.0.144" edition = "2021" exclude = ["/testdata"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "Wrapper for calling notmuch cli" +license = "UNLICENSED" +repository = "https://git.z.xinu.tv/wathiede/letterbox" +publish = ["xinu"] + [dependencies] log = "0.4.14" diff --git a/server/Cargo.toml b/server/Cargo.toml index 8acde96..1201ac4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -3,6 +3,10 @@ name = "letterbox-server" version = "0.0.144" edition = "2021" default-run = "letterbox-server" +description = "Backend for letterbox" +license = "UNLICENSED" +repository = "https://git.z.xinu.tv/wathiede/letterbox" +publish = ["xinu"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 4ea8e9a..1516748 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -2,6 +2,10 @@ name = "shared" version = "0.0.144" edition = "2021" +description = "Shared module for letterbox" +license = "UNLICENSED" +repository = "https://git.z.xinu.tv/wathiede/letterbox" +publish = ["xinu"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/web/Cargo.toml b/web/Cargo.toml index f9cb354..0efa2b9 100644 --- a/web/Cargo.toml +++ b/web/Cargo.toml @@ -1,13 +1,12 @@ [package] version = "0.0.144" name = "letterbox" -repository = "https://github.com/seed-rs/seed-quickstart" authors = ["Bill Thiede "] -description = "App Description" -categories = ["category"] -license = "MIT" -readme = "./README.md" edition = "2021" +description = "Web frontend for letterbox" +license = "UNLICENSED" +repository = "https://git.z.xinu.tv/wathiede/letterbox" +publish = ["xinu"] [build-dependencies] build-info-build = "0.0.39"