blob: b9e2b73b2de5e678225c30a634feeced40bc5204 (
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
28
29
|
[workspace]
resolver = "2"
members = [
"crates/*",
]
[workspace.package]
version = "0.2.0"
authors = ["seth <getchoo at tuta dot io>"]
edition = "2021"
repository = "https://github.com/getchoo/nixpkgs-tracker-bot"
license = "MIT"
[workspace.dependencies]
git-tracker = { path = "./crates/git-tracker" }
nixpkgs-tracker-http = { path = "./crates/nixpkgs-tracker-http" }
log = "0.4"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
complexity = "warn"
correctness = "deny"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "deny"
|