summaryrefslogtreecommitdiff
path: root/crates/bot-http/Cargo.toml
blob: 0888fdaf7c71c5487ce60dc260ac25df05d981f4 (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
[package]
name = "bot-http"
version = "0.2.0"
edition = "2021"

authors = ["seth <getchoo at tuta dot io>"]
description = "HTTP client for nixpkgs-tracker-bot"
repository = "https://github.com/getchoo/nixpkgs-tracker-bot"

publish = false

[dependencies]
log = { workspace = true }
reqwest = { version = "0.12.5", default-features = false, features = ["charset", "http2", "rustls-tls", "json"] }
serde = { version = "1.0.207", features = ["derive"] }

[lints.rust]
unsafe_code = "forbid"

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