From 47dd2b02c423e670a35966d1cf6abb5b62895186 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Wed, 22 Nov 2023 21:38:21 +0100 Subject: [PATCH] initial commit --- .env.example | 2 + .gitignore | 4 + Cargo.lock | 2639 +++++++++++++++++ Cargo.toml | 23 + LICENSE.md | 660 +++++ README.md | 47 + assets/p4bl0t.png | Bin 0 -> 66369 bytes .../20231122220824_guild_log_channels.sql | 6 + src/db.rs | 59 + src/discord/commands.rs | 19 + src/discord/events.rs | 0 src/discord/mod.rs | 31 + src/discord/utils.rs | 17 + src/main.rs | 17 + src/utils.rs | 10 + 15 files changed, 3534 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 assets/p4bl0t.png create mode 100644 migrations/20231122220824_guild_log_channels.sql create mode 100644 src/db.rs create mode 100644 src/discord/commands.rs create mode 100644 src/discord/events.rs create mode 100644 src/discord/mod.rs create mode 100644 src/discord/utils.rs create mode 100644 src/main.rs create mode 100644 src/utils.rs diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d6dd000 --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +DISCORD_TOKEN=changeme +DATABASE_URL=sqlite:p4bl0t.db diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..41af503 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/target +/.env +*.db +/.sqlx/ diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..3f0d669 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,2639 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" +dependencies = [ + "memchr", +] + +[[package]] +name = "allocator-api2" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "async-trait" +version = "0.1.74" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "async-tungstenite" +version = "0.17.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1b71b31561643aa8e7df3effe284fa83ab1a840e52294c5f4bd7bfd8b2becbb" +dependencies = [ + "futures-io", + "futures-util", + "log", + "pin-project-lite", + "tokio", + "tokio-rustls 0.23.4", + "tungstenite", + "webpki-roots 0.22.6", +] + +[[package]] +name = "atoi" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" +dependencies = [ + "num-traits", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "backtrace" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" +dependencies = [ + "serde", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "bumpalo" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "num-traits", + "serde", + "windows-targets", +] + +[[package]] +name = "color-eyre" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204" +dependencies = [ + "backtrace", + "color-spantrace", + "eyre", + "indenter", + "once_cell", + "owo-colors", + "tracing-error", +] + +[[package]] +name = "color-spantrace" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2" +dependencies = [ + "once_cell", + "owo-colors", + "tracing-core", + "tracing-error", +] + +[[package]] +name = "const-oid" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" + +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" + +[[package]] +name = "cpufeatures" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" +dependencies = [ + "libc", +] + +[[package]] +name = "crc" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "darling" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 1.0.109", +] + +[[package]] +name = "darling_macro" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" +dependencies = [ + "darling_core", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "dashmap" +version = "5.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +dependencies = [ + "cfg-if", + "hashbrown", + "lock_api", + "once_cell", + "parking_lot_core", + "serde", +] + +[[package]] +name = "der" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "derivative" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "dotenvy" +version = "0.15.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +dependencies = [ + "serde", +] + +[[package]] +name = "encoding_rs" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "etcetera" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" +dependencies = [ + "cfg-if", + "home", + "windows-sys", +] + +[[package]] +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "eyre" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd" +dependencies = [ + "indenter", + "once_cell", +] + +[[package]] +name = "fastrand" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" + +[[package]] +name = "finl_unicode" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" + +[[package]] +name = "flate2" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "flume" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" +dependencies = [ + "futures-core", + "futures-sink", + "spin 0.9.8", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" + +[[package]] +name = "futures-executor" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-intrusive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" +dependencies = [ + "futures-core", + "lock_api", + "parking_lot", +] + +[[package]] +name = "futures-io" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" + +[[package]] +name = "futures-macro" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "futures-sink" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" + +[[package]] +name = "futures-task" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" + +[[package]] +name = "futures-util" +version = "0.3.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "gimli" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + +[[package]] +name = "h2" +version = "0.3.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" +dependencies = [ + "ahash", + "allocator-api2", +] + +[[package]] +name = "hashlink" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hkdf" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" +dependencies = [ + "hmac", +] + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "home" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "http" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.4.10", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http", + "hyper", + "rustls 0.21.9", + "tokio", + "tokio-rustls 0.24.1", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "indenter" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" + +[[package]] +name = "indexmap" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "ipnet" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" + +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "js-sys" +version = "0.3.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +dependencies = [ + "spin 0.5.2", +] + +[[package]] +name = "libc" +version = "0.2.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" + +[[package]] +name = "libm" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "libsqlite3-sys" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" +dependencies = [ + "cc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" + +[[package]] +name = "lock_api" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num-bigint-dig" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" +dependencies = [ + "byteorder", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-integer" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "object" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" + +[[package]] +name = "ordered-float" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" +dependencies = [ + "num-traits", +] + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "owo-colors" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" + +[[package]] +name = "p4bl0t" +version = "0.1.0" +dependencies = [ + "color-eyre", + "dotenvy", + "poise", + "sqlx", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "paste" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "pin-project-lite" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + +[[package]] +name = "poise" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d104e4b5847283b2fbd6a7ec19fb6a8af328e2145623d056b66d750a30073fdf" +dependencies = [ + "async-trait", + "derivative", + "futures-core", + "futures-util", + "log", + "once_cell", + "parking_lot", + "poise_macros", + "regex", + "serenity", + "tokio", +] + +[[package]] +name = "poise_macros" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb516a8cf4e4ae4bd7ef5819d08c6ca408976461a9bea3ee3eec5138ac070c1" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "proc-macro2" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "regex" +version = "1.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" + +[[package]] +name = "reqwest" +version = "0.11.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" +dependencies = [ + "base64 0.21.5", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-rustls", + "ipnet", + "js-sys", + "log", + "mime", + "mime_guess", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls 0.21.9", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "system-configuration", + "tokio", + "tokio-rustls 0.24.1", + "tokio-util", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots 0.25.3", + "winreg", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" +dependencies = [ + "cc", + "getrandom", + "libc", + "spin 0.9.8", + "untrusted 0.9.0", + "windows-sys", +] + +[[package]] +name = "rsa" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a3211b01eea83d80687da9eef70e39d65144a3894866a5153a2723e425a157f" +dependencies = [ + "const-oid", + "digest", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core", + "signature", + "spki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustix" +version = "0.38.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e" +dependencies = [ + "bitflags 2.4.1", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + +[[package]] +name = "rustls" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" +dependencies = [ + "log", + "ring 0.16.20", + "sct", + "webpki", +] + +[[package]] +name = "rustls" +version = "0.21.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9" +dependencies = [ + "log", + "ring 0.17.5", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.5", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring 0.17.5", + "untrusted 0.9.0", +] + +[[package]] +name = "rustversion" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring 0.17.5", + "untrusted 0.9.0", +] + +[[package]] +name = "serde" +version = "1.0.193" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-value" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" +dependencies = [ + "ordered-float", + "serde", +] + +[[package]] +name = "serde_derive" +version = "1.0.193" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "serde_json" +version = "1.0.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serenity" +version = "0.11.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a7a89cef23483fc9d4caf2df41e6d3928e18aada84c56abd237439d929622c6" +dependencies = [ + "async-trait", + "async-tungstenite", + "base64 0.21.5", + "bitflags 1.3.2", + "bytes", + "cfg-if", + "chrono", + "dashmap", + "flate2", + "futures", + "mime", + "mime_guess", + "parking_lot", + "percent-encoding", + "reqwest", + "rustversion", + "serde", + "serde-value", + "serde_json", + "time", + "tokio", + "tracing", + "typemap_rev", + "url", +] + +[[package]] +name = "sha-1" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" + +[[package]] +name = "socket2" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "socket2" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spki" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "sqlformat" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85" +dependencies = [ + "itertools", + "nom", + "unicode_categories", +] + +[[package]] +name = "sqlx" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33" +dependencies = [ + "sqlx-core", + "sqlx-macros", + "sqlx-mysql", + "sqlx-postgres", + "sqlx-sqlite", +] + +[[package]] +name = "sqlx-core" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d" +dependencies = [ + "ahash", + "atoi", + "byteorder", + "bytes", + "crc", + "crossbeam-queue", + "dotenvy", + "either", + "event-listener", + "futures-channel", + "futures-core", + "futures-intrusive", + "futures-io", + "futures-util", + "hashlink", + "hex", + "indexmap", + "log", + "memchr", + "once_cell", + "paste", + "percent-encoding", + "rustls 0.21.9", + "rustls-pemfile", + "serde", + "serde_json", + "sha2", + "smallvec", + "sqlformat", + "thiserror", + "tokio", + "tokio-stream", + "tracing", + "url", + "webpki-roots 0.24.0", +] + +[[package]] +name = "sqlx-macros" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec" +dependencies = [ + "proc-macro2", + "quote", + "sqlx-core", + "sqlx-macros-core", + "syn 1.0.109", +] + +[[package]] +name = "sqlx-macros-core" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc" +dependencies = [ + "dotenvy", + "either", + "heck", + "hex", + "once_cell", + "proc-macro2", + "quote", + "serde", + "serde_json", + "sha2", + "sqlx-core", + "sqlx-mysql", + "sqlx-sqlite", + "syn 1.0.109", + "tempfile", + "tokio", + "url", +] + +[[package]] +name = "sqlx-mysql" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db" +dependencies = [ + "atoi", + "base64 0.21.5", + "bitflags 2.4.1", + "byteorder", + "bytes", + "crc", + "digest", + "dotenvy", + "either", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "generic-array", + "hex", + "hkdf", + "hmac", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "percent-encoding", + "rand", + "rsa", + "serde", + "sha1", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror", + "tracing", + "whoami", +] + +[[package]] +name = "sqlx-postgres" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624" +dependencies = [ + "atoi", + "base64 0.21.5", + "bitflags 2.4.1", + "byteorder", + "crc", + "dotenvy", + "etcetera", + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "hex", + "hkdf", + "hmac", + "home", + "itoa", + "log", + "md-5", + "memchr", + "once_cell", + "rand", + "serde", + "serde_json", + "sha1", + "sha2", + "smallvec", + "sqlx-core", + "stringprep", + "thiserror", + "tracing", + "whoami", +] + +[[package]] +name = "sqlx-sqlite" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f" +dependencies = [ + "atoi", + "flume", + "futures-channel", + "futures-core", + "futures-executor", + "futures-intrusive", + "futures-util", + "libsqlite3-sys", + "log", + "percent-encoding", + "serde", + "sqlx-core", + "tracing", + "url", +] + +[[package]] +name = "stringprep" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" +dependencies = [ + "finl_unicode", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tempfile" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" +dependencies = [ + "cfg-if", + "fastrand", + "redox_syscall", + "rustix", + "windows-sys", +] + +[[package]] +name = "thiserror" +version = "1.0.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "thread_local" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "time" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" +dependencies = [ + "deranged", + "itoa", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" +dependencies = [ + "time-core", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "pin-project-lite", + "socket2 0.5.5", + "tokio-macros", + "windows-sys", +] + +[[package]] +name = "tokio-macros" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "tokio-rustls" +version = "0.23.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" +dependencies = [ + "rustls 0.20.9", + "tokio", + "webpki", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls 0.21.9", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "tracing-core" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-error" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e" +dependencies = [ + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +dependencies = [ + "nu-ansi-term", + "sharded-slab", + "smallvec", + "thread_local", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + +[[package]] +name = "tungstenite" +version = "0.17.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" +dependencies = [ + "base64 0.13.1", + "byteorder", + "bytes", + "http", + "httparse", + "log", + "rand", + "rustls 0.20.9", + "sha-1", + "thiserror", + "url", + "utf-8", + "webpki", +] + +[[package]] +name = "typemap_rev" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5b74f0a24b5454580a79abb6994393b09adf0ab8070f15827cb666255de155" + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "unicase" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-segmentation" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" + +[[package]] +name = "unicode_categories" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.39", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" + +[[package]] +name = "wasm-streams" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" +dependencies = [ + "ring 0.17.5", + "untrusted 0.9.0", +] + +[[package]] +name = "webpki-roots" +version = "0.22.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +dependencies = [ + "webpki", +] + +[[package]] +name = "webpki-roots" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888" +dependencies = [ + "rustls-webpki", +] + +[[package]] +name = "webpki-roots" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" + +[[package]] +name = "whoami" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys", +] + +[[package]] +name = "zerocopy" +version = "0.7.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.39", +] + +[[package]] +name = "zeroize" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e5c8fa2 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "p4bl0t" +version = "0.1.0" +edition = "2021" +authors = ["Lucien Cartier-Tilet "] +license-file = "LICENSE.md" +description = "A simple logging Discord bot." +readme = "README.md" +homepage = "https://github.com/phundrak/p4bl0t" +repository = "https://github.com/phundrak/p4bl0t" +keywords = ["discord", "bot", "logging"] +publish = false + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +color-eyre = "0.6.2" +dotenvy = "0.15.7" +poise = { version = "0.5.7" } +sqlx = { version = "0.7.2", features = ["sqlite", "tls-rustls", "runtime-tokio-rustls"] } +tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] } +tracing = "0.1.40" +tracing-subscriber = "0.3.18" diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..c6f01c6 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,660 @@ +# GNU AFFERO GENERAL PUBLIC LICENSE + +Version 3, 19 November 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. + + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +## Preamble + +The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains +free software for all its users. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + +A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + +The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + +An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing +under this license. + +The precise terms and conditions for copying, distribution and +modification follow. + +## TERMS AND CONDITIONS + +### 0. Definitions. + +"This License" refers to version 3 of the GNU Affero General Public +License. + +"Copyright" also means copyright-like laws that apply to other kinds +of works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of +an exact copy. The resulting work is called a "modified version" of +the earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user +through a computer network, with no transfer of a copy, is not +conveying. + +An interactive user interface displays "Appropriate Legal Notices" to +the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +### 1. Source Code. + +The "source code" for a work means the preferred form of the work for +making modifications to it. "Object code" means any non-source form of +a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users can +regenerate automatically from other parts of the Corresponding Source. + +The Corresponding Source for a work in source code form is that same +work. + +### 2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not convey, +without conditions so long as your license otherwise remains in force. +You may convey covered works to others for the sole purpose of having +them make modifications exclusively for you, or provide you with +facilities for running those works, provided that you comply with the +terms of this License in conveying all material for which you do not +control copyright. Those thus making or running the covered works for +you must do so exclusively on your behalf, under your direction and +control, on terms that prohibit them from making any copies of your +copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the +conditions stated below. Sublicensing is not allowed; section 10 makes +it unnecessary. + +### 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such +circumvention is effected by exercising rights under this License with +respect to the covered work, and you disclaim any intention to limit +operation or modification of the work as a means of enforcing, against +the work's users, your or third parties' legal rights to forbid +circumvention of technological measures. + +### 4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +### 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these +conditions: + +- a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. +- b) The work must carry prominent notices stating that it is + released under this License and any conditions added under + section 7. This requirement modifies the requirement in section 4 + to "keep intact all notices". +- c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. +- d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +### 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of +sections 4 and 5, provided that you also convey the machine-readable +Corresponding Source under the terms of this License, in one of these +ways: + +- a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. +- b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding + Source from a network server at no charge. +- c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. +- d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. +- e) Convey the object code using peer-to-peer transmission, + provided you inform other peers where the object code and + Corresponding Source of the work are being offered to the general + public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, +family, or household purposes, or (2) anything designed or sold for +incorporation into a dwelling. In determining whether a product is a +consumer product, doubtful cases shall be resolved in favor of +coverage. For a particular product received by a particular user, +"normally used" refers to a typical or common use of that class of +product, regardless of the status of the particular user or of the way +in which the particular user actually uses, or expects or is expected +to use, the product. A product is a consumer product regardless of +whether the product has substantial commercial, industrial or +non-consumer uses, unless such uses represent the only significant +mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to +install and execute modified versions of a covered work in that User +Product from a modified version of its Corresponding Source. The +information must suffice to ensure that the continued functioning of +the modified object code is in no case prevented or interfered with +solely because modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or +updates for a work that has been modified or installed by the +recipient, or for the User Product in which it has been modified or +installed. Access to a network may be denied when the modification +itself materially and adversely affects the operation of the network +or violates the rules and protocols for communication across the +network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +### 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders +of that material) supplement the terms of this License with terms: + +- a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or +- b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or +- c) Prohibiting misrepresentation of the origin of that material, + or requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or +- d) Limiting the use for publicity purposes of names of licensors + or authors of the material; or +- e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or +- f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; the +above requirements apply either way. + +### 8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +### 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run +a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +### 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +### 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned +or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within the +scope of its coverage, prohibits the exercise of, or is conditioned on +the non-exercise of one or more of the rights that are specifically +granted under this License. You may not convey a covered work if you +are a party to an arrangement with a third party that is in the +business of distributing software, under which you make payment to the +third party based on the extent of your activity of conveying the +work, and under which the third party grants, to any of the parties +who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by +you (or copies made from those copies), or (b) primarily for and in +connection with specific products or compilations that contain the +covered work, unless you entered into that arrangement, or that patent +license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +### 12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under +this License and any other pertinent obligations, then as a +consequence you may not convey it at all. For example, if you agree to +terms that obligate you to collect a royalty for further conveying +from those to whom you convey the Program, the only way you could +satisfy both those terms and this License would be to refrain entirely +from conveying the Program. + +### 13. Remote Network Interaction; Use with the GNU General Public License. + +Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your +version supports such interaction) an opportunity to receive the +Corresponding Source of your version by providing access to the +Corresponding Source from a network server at no charge, through some +standard or customary means of facilitating copying of software. This +Corresponding Source shall include the Corresponding Source for any +work covered by version 3 of the GNU General Public License that is +incorporated pursuant to the following paragraph. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + +### 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions +of the GNU Affero General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions +of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +### 15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT +WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE +DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. + +### 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR +CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT +NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR +LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM +TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +### 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + +END OF TERMS AND CONDITIONS + +## How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + +To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively state +the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper +mail. + +If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for +the specific requirements. + +You should also get your employer (if you work as a programmer) or +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. For more information on this, and how to apply and follow +the GNU AGPL, see . diff --git a/README.md b/README.md new file mode 100644 index 0000000..e842f1f --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# p4bl0t + +p4bl0t is a simple logging bot for Discord written in Rust. + +## Usage + +In order to run p4bl0t, head over to your [developer +portal](https://discord.com/developers) on Discord’s website, and +create a bot there. Then, copy the `.env.example` file to a `.env` +file and fill in the details. +```sh +cp .env.example .env +emacs .env +# or +vim .env +# or +nano .env +# or +code .env +# or whichever text editor you prefer +``` + +Install the sqlx CLI if you don’t have it already. +```sh +cargo install sqlx-cli +``` + +Setup your SQLite database. +```sh +export DATABASE_URL= # should be the same as in the .env file +sqlx database create +sqlx migrate run +``` + +You can then run the project using `cargo run` +```sh +cargo run +# or +cargo run --release # if you don’t want debug symbols +``` + +## Contributing +Pull requests are welcome. For major changes, please open an issue +first to discuss what you would like to change. + +## License +[AGPL-3.0 or later](./LICENSE.md) diff --git a/assets/p4bl0t.png b/assets/p4bl0t.png new file mode 100644 index 0000000000000000000000000000000000000000..8b46570eb4a2f37bc8ea0d2a2d2325159ab5d15c GIT binary patch literal 66369 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 _a-C@r#LcJyd_%MELN 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 j3JC&0|6hgaaK8ALq+{(E*uB50f color_eyre::Result { + Ok(Self { + pool: SqlitePool::connect(&env::var("DATABASE_URL")?).await?, + }) + } + + pub async fn get_logging_channel( + &self, + guild_id: u64, + ) -> color_eyre::Result> { + let guild_str = guild_id.to_string(); + let channels = sqlx::query!( + r#" +SELECT channel_id +FROM guild_log_channels +WHERE guild_id = ?1 + "#, + guild_str + ) + .fetch_all(&self.pool) + .await?; + Ok(channels + .iter() + .map(|id| id.channel_id.parse::().unwrap()) + .collect()) + } + + pub async fn set_logging_channel( + &self, + guild_id: u64, + channel_id: u64, + ) -> color_eyre::Result<()> { + let guild_str = guild_id.to_string(); + let channel_str = channel_id.to_string(); + let mut conn = self.pool.acquire().await?; + + sqlx::query!( + r#" +INSERT INTO guild_log_channels (guild_id, channel_id) +VALUES ( ?1, ?2 ) + "#, + guild_str, + channel_str + ) + .execute(&mut *conn) + .await? + .last_insert_rowid(); + Ok(()) + } +} diff --git a/src/discord/commands.rs b/src/discord/commands.rs new file mode 100644 index 0000000..b0b24e2 --- /dev/null +++ b/src/discord/commands.rs @@ -0,0 +1,19 @@ +use super::{Context, Error}; + +use super::utils::serenity; + +#[poise::command(slash_command)] +pub async fn add_logging_channel( + ctx: Context<'_>, + #[description = "Selected channel"] channel: Option, +) -> Result<(), Error> { + let response = match channel { + None => "No channel selected. Please select one.".to_owned(), + Some(chan) => { + let channel_id = chan.id(); + format!("Selected channel <#{channel_id}>") + } + }; + ctx.say(response).await?; + Ok(()) +} diff --git a/src/discord/events.rs b/src/discord/events.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/discord/mod.rs b/src/discord/mod.rs new file mode 100644 index 0000000..1e17966 --- /dev/null +++ b/src/discord/mod.rs @@ -0,0 +1,31 @@ +mod commands; +mod events; +pub mod utils; + +use poise::FrameworkBuilder; +use utils::serenity; + +use commands::add_logging_channel; +use utils::{BotData, Context, Error}; + +pub async fn make_bot() -> color_eyre::Result> +{ + let framework = poise::Framework::builder() + .options(poise::FrameworkOptions { + commands: vec![add_logging_channel()], + ..Default::default() + }) + .token(std::env::var("DISCORD_TOKEN").expect("missing DISCORD_TOKEN")) + .intents(serenity::GatewayIntents::non_privileged()) + .setup(|ctx, _ready, framework| { + Box::pin(async move { + poise::builtins::register_globally( + ctx, + &framework.options().commands, + ) + .await?; + Ok(BotData::new().await?) + }) + }); + Ok(framework) +} diff --git a/src/discord/utils.rs b/src/discord/utils.rs new file mode 100644 index 0000000..e08a8d0 --- /dev/null +++ b/src/discord/utils.rs @@ -0,0 +1,17 @@ +use crate::db::Database; + +pub use poise::serenity_prelude as serenity; +pub struct BotData { + database: Database, +} + +impl BotData { + pub async fn new() -> color_eyre::Result { + Ok(Self { + database: Database::new().await?, + }) + } +} + +pub type Error = Box; +pub type Context<'a> = poise::Context<'a, BotData, Error>; diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..200e01a --- /dev/null +++ b/src/main.rs @@ -0,0 +1,17 @@ +mod utils; +mod db; +mod discord; + +use std::error::Error; + +#[tokio::main] +async fn main() -> Result<(), Box> { + dotenvy::dotenv()?; + color_eyre::install()?; + utils::setup_logging(); + + let bot = discord::make_bot().await?; + bot.run().await?; + + Ok(()) +} diff --git a/src/utils.rs b/src/utils.rs new file mode 100644 index 0000000..a610e4b --- /dev/null +++ b/src/utils.rs @@ -0,0 +1,10 @@ +use tracing::Level; +use tracing_subscriber::FmtSubscriber; + +pub fn setup_logging() { + let subscriber = FmtSubscriber::builder() + .with_max_level(Level::DEBUG) + .finish(); + tracing::subscriber::set_global_default(subscriber) + .expect("Setting default subscriber failed"); +}