summaryrefslogtreecommitdiff
path: root/crates/bot
diff options
context:
space:
mode:
Diffstat (limited to 'crates/bot')
-rw-r--r--crates/bot/Cargo.toml26
-rw-r--r--crates/bot/src/main.rs10
2 files changed, 0 insertions, 36 deletions
diff --git a/crates/bot/Cargo.toml b/crates/bot/Cargo.toml
deleted file mode 100644
index 69feace..0000000
--- a/crates/bot/Cargo.toml
+++ /dev/null
@@ -1,26 +0,0 @@
-[package]
-name = "nixpkgs-tracker-bot"
-version = "0.2.0"
-edition = "2021"
-
-authors = ["seth <getchoo at tuta dot io>"]
-description = "A small Discord app that helps you track where nixpkgs PRs have reached"
-repository = "https://github.com/getchoo/nixpkgs-tracker-bot"
-
-[dependencies]
-bot-error = { workspace = true }
-bot-client = { workspace = true }
-dotenvy = "0.15.7"
-env_logger = "0.11.5"
-tokio = { workspace = true }
-
-[lints.rust]
-unsafe_code = "forbid"
-
-[lints.clippy]
-complexity = "warn"
-correctness = "deny"
-pedantic = "warn"
-perf = "warn"
-style = "warn"
-suspicious = "deny"
diff --git a/crates/bot/src/main.rs b/crates/bot/src/main.rs
deleted file mode 100644
index 390e79b..0000000
--- a/crates/bot/src/main.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#[tokio::main]
-async fn main() -> Result<(), bot_error::Error> {
- dotenvy::dotenv().ok();
- env_logger::try_init()?;
-
- let mut client = bot_client::get().await?;
- client.start().await?;
-
- Ok(())
-}