summaryrefslogtreecommitdiff
path: root/crates/git-tracker/Cargo.toml
blob: 09584cb34bd52f254af6f5c99bf6bc9884f62480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "git-tracker"
version = "0.2.0"
edition = "2021"

authors = ["seth <getchoo at tuta dot io>"]
description = "A library that helps you track commits and branches in a Git repository"
repository = "https://github.com/getchoo/nixpkgs-tracker-bot"

publish = false

[dependencies]
git2 = { workspace = true }
log = { workspace = true }
thiserror = "1.0.63"

[lints.rust]
async_fn_in_trait = "allow"
unsafe_code = "forbid"

[lints.clippy]
complexity = "warn"
correctness = "deny"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "deny"