lint: install cargo-hack in ci and add description in cargo.toml

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai
2025-02-07 21:02:54 +05:30
parent 7ba4a4e735
commit 58f5d9ac46
2 changed files with 11 additions and 2 deletions

View File

@@ -102,10 +102,10 @@ jobs:
with:
crate: cargo-nextest
- name: Install cargo-nextest
- name: Install cargo-hack
uses: baptiste0928/cargo-install@v3
with:
crate: cargo-nextest
crate: cargo-hack
- uses: Swatinem/rust-cache@v2
with:

View File

@@ -1,7 +1,16 @@
[package]
name = "umami-alerts"
version = "0.1.0"
authors = ["Chinmay D. Pai <chinmaydpai@gmail.com>"]
edition = "2021"
license = "MIT"
description = "Daily reports generator for Umami Analytics"
keywords = ["reports", "analytics", "email"]
repository = "https://github.com/Thunderbottom/umami-alerts"
homepage = "https://github.com/Thunderbottom/umami-alerts"
readme = "README.md"
include = ["src/**/*", "LICENSE*", "README.md"]
publish = false
[dependencies]
tokio = { version = "1.43", features = ["full"] }