1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-31 12:37:45 +00:00

refac: update thanks

This commit is contained in:
Kevin Amado 2024-12-08 19:29:41 -07:00
parent ac93a779e7
commit 1bd3c5832a
2 changed files with 34 additions and 32 deletions

View file

@ -242,37 +242,38 @@ The following people have helped improving Alejandra.
Thank you ❤️ Thank you ❤️
- [Kevin Amado](https://github.com/kamadorueda) ~ [Connor Baker](https://github.com/ConnorBaker),
[Email](mailto:kamadorueda@gmail.com), [David Arnold](https://github.com/blaggacao),
[LinkedIn](https://www.linkedin.com/in/kamadorueda). [David Hauer](https://github.com/DavHau),
- [Thomas Bereknyei](https://github.com/tomberek). [Fabian Möller](https://github.com/B4dM4n),
- [Piegames](https://github.com/piegamesde). [Florian Finkernagel](https://github.com/TyberiusPrime),
- [Joachim Ernst](https://github.com/0x4A6F). [Jamie Quigley](https://github.com/Sciencentistguy),
- [David Arnold](https://github.com/blaggacao). [Joachim Ernst](https://github.com/0x4A6F),
- [David Hauer](https://github.com/DavHau). [Jörg Thalheim](https://github.com/Mic92),
- [Ryan Mulligan](https://github.com/ryantm). [Kevin Amado](https://github.com/kamadorueda)
- [Fabian Möller](https://github.com/B4dM4n). ([Email](mailto:kamadorueda@gmail.com),
- [Rok Garbas](https://github.com/garbas). [LinkedIn](https://www.linkedin.com/in/kamadorueda)),
- [Yorick van Pelt](https://github.com/yorickvP). [Loïc Reynier](https://github.com/loicreynier),
- [Rehno Lindeque](https://github.com/rehno-lindeque). [Matthew Kenigsberg](https://github.com/mkenigs),
- [Rebecca Turner](https://github.com/9999years). [Michael Utz](https://github.com/theutz),
- [Jörg Thalheim](https://github.com/Mic92). [Mr Hedgehog](https://github.com/ModdedGamers),
- [Nathan Henrie](https://github.com/n8henrie). [Nathan Henrie](https://github.com/n8henrie),
- [Vincent Ambo](https://github.com/tazjin). [Norbert Melzer](https://github.com/NobbZ),
- [Jamie Quigley](https://github.com/Sciencentistguy). [Pablo Ovelleiro Corral](https://github.com/pinpox),
- [Loïc Reynier](https://github.com/loicreynier). [Patrick Stevens](https://github.com/Smaug123),
- [Mr Hedgehog](https://github.com/ModdedGamers). [Piegames](https://github.com/piegamesde),
- [Tobias Bora](https://github.com/tobiasBora). [Rebecca Turner](https://github.com/9999years),
- [Tristan Maat](https://github.com/TLATER). [Rehno Lindeque](https://github.com/rehno-lindeque),
- [Victor Engmark](https://github.com/l0b0). [Rok Garbas](https://github.com/garbas),
- [UserSv4](https://github.com/UserSv4). [Ryan Mulligan](https://github.com/ryantm),
- [Michael Utz](https://github.com/theutz). [Thomas Bereknyei](https://github.com/tomberek),
- [Pablo Ovelleiro Corral](https://github.com/pinpox). [Tobias Bora](https://github.com/tobiasBora),
- [Norbert Melzer](https://github.com/NobbZ). [Tristan Maat](https://github.com/TLATER),
- [Patrick Stevens](https://github.com/Smaug123). [UserSv4](https://github.com/UserSv4),
- [Connor Baker](https://github.com/ConnorBaker). [Victor Engmark](https://github.com/l0b0),
- [Matthew Kenigsberg](https://github.com/mkenigs). [Vincent Ambo](https://github.com/tazjin),
- [Florian Finkernagel](https://github.com/TyberiusPrime). [Vladimir Fetisov](https://github.com/3timeslazy),
and [Yorick van Pelt](https://github.com/yorickvP).
## Footnotes ## Footnotes

View file

@ -1,5 +1,5 @@
use rand::distributions::Distribution;
use rand::distributions::weighted::WeightedIndex; use rand::distributions::weighted::WeightedIndex;
use rand::distributions::Distribution;
use rand::rngs::OsRng; use rand::rngs::OsRng;
pub(crate) fn random_ad() -> String { pub(crate) fn random_ad() -> String {
@ -63,6 +63,7 @@ fn contributor_thanks() -> String {
(1.0, ("UserSv4", "UserSv4")), (1.0, ("UserSv4", "UserSv4")),
(1.0, ("Victor Engmark", "l0b0")), (1.0, ("Victor Engmark", "l0b0")),
(1.0, ("Vincent Ambo", "tazjin")), (1.0, ("Vincent Ambo", "tazjin")),
(1.0, ("Vladimir Fetisov", "3timeslazy")),
(1.0, ("Yorick van Pelt", "yorickvP")), (1.0, ("Yorick van Pelt", "yorickvP")),
]; ];