From 56512fa72825ed7ad8bf4ee33e102c0de51b10c9 Mon Sep 17 00:00:00 2001 From: paninizer <101371138+paninizer@users.noreply.github.com> Date: Thu, 22 Feb 2024 21:03:16 -0500 Subject: [PATCH 1/3] Create CONTRIBUTING.md Creating first edition of contribution guidelines. --- CONTRIBUTING.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..bbafcec --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,40 @@ +# CONTRIBUTION GUIDELINES + +

Thank you for taking the time to examine this contribution guideline to this project. To those who wish to collaborate on this project, they must follow this guideline.

+ +

The contributors of this project will agree to:

+ +1. Follow the Terms of Service of Discord and GitHub, and will not engage in illegal/blackhat activities with this project. +2. Use the GPL 3.0 License in any subsequent iterations, releases, or modified copies of this project to maintain the free and open-source nature of this project. +3. Follow the Code of Conduct of this repository as it appears. + +Any breach in this guideline will subject you to potential legal actions against you, and by using this project in any way, you have agreed to follow the contributing guidelines and code of conduct. + +--- + +Contribution to this project is very serious, although this is more of a hobby project. So after the scary legal jargon, let us get to the specifics of contribution. + +Please finely search the issues tab for any duplications your issue, then only open a new issue after you believe it is unique amongst all the previously opened ones. This is to reduce the workload the repository contributors have to go through to search for bug fixes and security updates. + +Working on your first Pull Request? You can learn how from this free series, [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github). + +As this repository expands, more help is needed to write up documentation and translations. If you decide to contribute, please maintain formal grammar as defined in [Microsoft's Definitions of Formal Grammar](https://www.microsoft.com/en-us/microsoft-365-life-hacks/writing/what-is-formal-writing-style-and-when-should-you-use-it). + +For all contributions: +> * Please view issues and past pull requests to determine if your contribution is a duplicate of someone else's. +> * Please open a pull request and provide a through but succinct description on your changes and why it would be needed. +> * Please write your code with a clear, descriptive, but not overtly complicated style and follow proper indentation and formatting measures as defined in [Rust Nightly Style Guide](https://doc.rust-lang.org/nightly/style-guide/). If you are not sure how to format or are too lazy to do that, you can use `cargo fmt` to use the builtin formatting for cargo. + +

Small Contributions

+ +Small contributions such as fixing spelling errors, where the content is small enough to not be considered intellectual property, can be submitted by a contributor as a patch, without a CLA. + +As a rule of thumb, changes are obvious fixes if they do not introduce any new functionality or creative thinking. As long as the change does not affect functionality, some likely examples include the following: + +> * Spelling / grammar fixes +> * Typo correction, white space and formatting changes +> * Comment clean up +> * Bug fixes that change default return values or error codes stored in constants +> * Adding logging messages or debugging output +> * Changes to ‘metadata’ files like Gemfile, .gitignore, build scripts, etc. +> * Moving source files from one directory or package to another From 35f04d965e5d0ffa474fc51c67d4e27536e30884 Mon Sep 17 00:00:00 2001 From: paninizer <101371138+paninizer@users.noreply.github.com> Date: Thu, 29 Feb 2024 19:24:06 -0500 Subject: [PATCH 2/3] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5251d0f..42d1417 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,4 @@ updates: - package-ecosystem: "cargo" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" + interval: "daily" From e53e515cfa1a06944cb9b9b9df369f1c3038e479 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 06:12:07 +0000 Subject: [PATCH 3/3] Update reqwest requirement from 0.11.24 to 0.12.0 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.24...v0.12.0) --- updated-dependencies: - dependency-name: reqwest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bcf1e30..e880891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ sqlx = { version = "^0.7.3", "features" = [ "sqlite", "sqlx-sqlite", ] } -reqwest = { version = "0.11.24", features = ["json"] } +reqwest = { version = "0.12.0", features = ["json"] } lazy_static = "1.4.0" dashmap = "^5.5.3" uuid = { version = "1.7.0", features = ["v4"] }