blob: a2ba2a0121fb54cb714b22dcd9ac99f50cf17660 (
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
30
31
32
|
[package]
name = "bot-client"
version = "0.2.0"
edition = "2021"
authors = ["seth <getchoo at tuta dot io>"]
description = "Discord client for nixpkgs-tracker-bot"
repository = "https://github.com/getchoo/nixpkgs-tracker-bot"
publish = false
[dependencies]
bot-commands = { workspace = true }
bot-config = { workspace = true }
bot-consts = { workspace = true }
bot-error = { workspace = true }
bot-http = { workspace = true }
bot-jobs = { workspace = true }
log = { workspace = true }
serenity = { workspace = true }
tokio = { workspace = true }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
complexity = "warn"
correctness = "deny"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "deny"
|