summaryrefslogtreecommitdiff
path: root/crates/bot-commands/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/bot-commands/Cargo.toml')
-rw-r--r--crates/bot-commands/Cargo.toml34
1 files changed, 0 insertions, 34 deletions
diff --git a/crates/bot-commands/Cargo.toml b/crates/bot-commands/Cargo.toml
deleted file mode 100644
index 3594c70..0000000
--- a/crates/bot-commands/Cargo.toml
+++ /dev/null
@@ -1,34 +0,0 @@
-[package]
-name = "bot-commands"
-version = "0.2.0"
-edition = "2021"
-
-authors = ["seth <getchoo at tuta dot io>"]
-description = "Discord application commands for nixpkgs-tracker-bot"
-repository = "https://github.com/getchoo/nixpkgs-tracker-bot"
-
-publish = false
-
-[dependencies]
-bot-config = { workspace = true }
-bot-consts = { workspace = true }
-bot-error = { workspace = true }
-bot-http = { workspace = true }
-git-tracker = { workspace = true }
-log = { workspace = true }
-serenity = { workspace = true }
-
-[lints.rust]
-unsafe_code = "forbid"
-
-[lints.clippy]
-complexity = "warn"
-correctness = "deny"
-pedantic = "warn"
-perf = "warn"
-style = "warn"
-suspicious = "deny"
-# NOTE: THIS ISN'T IN OTHER CRATES BUT IS HERE
-# this is because we don't really care about error docs here
-# and it could mess with poise's comment system in the future :p
-missing-errors-doc = "allow"