├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── 01_suggest-project.md │ ├── 02_update-project.md │ ├── 03_update-category.md │ ├── 04_change-configuration.md │ └── 05_anything-else.md ├── PULL_REQUEST_TEMPLATE.md ├── labels.yml └── workflows │ └── update-best-of-list.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config ├── footer.md └── header.md ├── history ├── 2021-02-09_changes.md ├── 2021-02-09_projects.csv ├── 2021-02-15_changes.md ├── 2021-02-15_projects.csv ├── 2021-02-22_changes.md ├── 2021-02-22_projects.csv ├── 2021-03-01_changes.md ├── 2021-03-01_projects.csv ├── 2021-03-08_changes.md ├── 2021-03-08_projects.csv ├── 2021-03-15_changes.md ├── 2021-03-15_projects.csv ├── 2021-03-24_changes.md ├── 2021-03-24_projects.csv ├── 2021-03-25_changes.md ├── 2021-03-25_projects.csv ├── 2021-03-26_changes.md ├── 2021-03-26_projects.csv ├── 2021-03-29_changes.md ├── 2021-03-29_projects.csv ├── 2021-04-05_changes.md ├── 2021-04-05_projects.csv ├── 2021-04-12_changes.md ├── 2021-04-12_projects.csv ├── 2021-04-19_changes.md ├── 2021-04-19_projects.csv ├── 2021-04-26_changes.md ├── 2021-04-26_projects.csv ├── 2021-05-03_changes.md ├── 2021-05-03_projects.csv ├── 2021-05-10_changes.md ├── 2021-05-10_projects.csv ├── 2021-05-17_changes.md ├── 2021-05-17_projects.csv ├── 2021-05-24_changes.md ├── 2021-05-24_projects.csv ├── 2021-06-14_changes.md ├── 2021-06-14_projects.csv ├── 2021-06-21_changes.md ├── 2021-06-21_projects.csv ├── 2021-07-19_changes.md ├── 2021-07-19_projects.csv ├── 2021-08-02_changes.md ├── 2021-08-02_projects.csv ├── 2021-08-09_changes.md ├── 2021-08-09_projects.csv ├── 2021-08-16_changes.md ├── 2021-08-16_projects.csv ├── 2021-09-16_changes.md ├── 2021-09-16_projects.csv ├── 2021-09-27_changes.md ├── 2021-09-27_projects.csv ├── 2021-10-04_changes.md ├── 2021-10-04_projects.csv ├── 2021-10-18_changes.md ├── 2021-10-18_projects.csv ├── 2021-12-06_changes.md ├── 2021-12-06_projects.csv ├── 2021-12-13_changes.md ├── 2021-12-13_projects.csv ├── 2022-01-24_changes.md ├── 2022-01-24_projects.csv ├── 2023-03-01_changes.md ├── 2023-03-01_projects.csv ├── 2023-05-01_changes.md ├── 2023-05-01_projects.csv ├── 2023-08-01_changes.md ├── 2023-08-01_projects.csv ├── 2024-02-01_changes.md ├── 2024-02-01_projects.csv ├── 2024-03-01_changes.md ├── 2024-03-01_projects.csv ├── 2024-04-03_changes.md ├── 2024-04-03_projects.csv ├── 2024-10-02_changes.md ├── 2024-10-02_projects.csv ├── 2024-12-01_changes.md └── 2024-12-01_projects.csv ├── latest-changes.md └── projects.yaml /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_suggest-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/ISSUE_TEMPLATE/01_suggest-project.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_update-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/ISSUE_TEMPLATE/02_update-project.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_update-category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/ISSUE_TEMPLATE/03_update-category.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_change-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/ISSUE_TEMPLATE/04_change-configuration.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_anything-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/ISSUE_TEMPLATE/05_anything-else.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/update-best-of-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.github/workflows/update-best-of-list.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/README.md -------------------------------------------------------------------------------- /config/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/config/footer.md -------------------------------------------------------------------------------- /config/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/config/header.md -------------------------------------------------------------------------------- /history/2021-02-09_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2021-02-09_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-02-09_projects.csv -------------------------------------------------------------------------------- /history/2021-02-15_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2021-02-15_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-02-15_projects.csv -------------------------------------------------------------------------------- /history/2021-02-22_changes.md: -------------------------------------------------------------------------------- 1 | Nothing changed from last update. -------------------------------------------------------------------------------- /history/2021-02-22_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-02-22_projects.csv -------------------------------------------------------------------------------- /history/2021-03-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-01_changes.md -------------------------------------------------------------------------------- /history/2021-03-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-01_projects.csv -------------------------------------------------------------------------------- /history/2021-03-08_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-08_changes.md -------------------------------------------------------------------------------- /history/2021-03-08_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-08_projects.csv -------------------------------------------------------------------------------- /history/2021-03-15_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-15_changes.md -------------------------------------------------------------------------------- /history/2021-03-15_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-15_projects.csv -------------------------------------------------------------------------------- /history/2021-03-24_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-24_changes.md -------------------------------------------------------------------------------- /history/2021-03-24_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-24_projects.csv -------------------------------------------------------------------------------- /history/2021-03-25_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-25_changes.md -------------------------------------------------------------------------------- /history/2021-03-25_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-25_projects.csv -------------------------------------------------------------------------------- /history/2021-03-26_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-26_changes.md -------------------------------------------------------------------------------- /history/2021-03-26_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-26_projects.csv -------------------------------------------------------------------------------- /history/2021-03-29_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-29_changes.md -------------------------------------------------------------------------------- /history/2021-03-29_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-03-29_projects.csv -------------------------------------------------------------------------------- /history/2021-04-05_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-05_changes.md -------------------------------------------------------------------------------- /history/2021-04-05_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-05_projects.csv -------------------------------------------------------------------------------- /history/2021-04-12_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-12_changes.md -------------------------------------------------------------------------------- /history/2021-04-12_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-12_projects.csv -------------------------------------------------------------------------------- /history/2021-04-19_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-19_changes.md -------------------------------------------------------------------------------- /history/2021-04-19_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-19_projects.csv -------------------------------------------------------------------------------- /history/2021-04-26_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-26_changes.md -------------------------------------------------------------------------------- /history/2021-04-26_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-04-26_projects.csv -------------------------------------------------------------------------------- /history/2021-05-03_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-03_changes.md -------------------------------------------------------------------------------- /history/2021-05-03_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-03_projects.csv -------------------------------------------------------------------------------- /history/2021-05-10_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-10_changes.md -------------------------------------------------------------------------------- /history/2021-05-10_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-10_projects.csv -------------------------------------------------------------------------------- /history/2021-05-17_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-17_changes.md -------------------------------------------------------------------------------- /history/2021-05-17_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-17_projects.csv -------------------------------------------------------------------------------- /history/2021-05-24_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-24_changes.md -------------------------------------------------------------------------------- /history/2021-05-24_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-05-24_projects.csv -------------------------------------------------------------------------------- /history/2021-06-14_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-06-14_changes.md -------------------------------------------------------------------------------- /history/2021-06-14_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-06-14_projects.csv -------------------------------------------------------------------------------- /history/2021-06-21_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-06-21_changes.md -------------------------------------------------------------------------------- /history/2021-06-21_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-06-21_projects.csv -------------------------------------------------------------------------------- /history/2021-07-19_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-07-19_changes.md -------------------------------------------------------------------------------- /history/2021-07-19_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-07-19_projects.csv -------------------------------------------------------------------------------- /history/2021-08-02_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-02_changes.md -------------------------------------------------------------------------------- /history/2021-08-02_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-02_projects.csv -------------------------------------------------------------------------------- /history/2021-08-09_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-09_changes.md -------------------------------------------------------------------------------- /history/2021-08-09_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-09_projects.csv -------------------------------------------------------------------------------- /history/2021-08-16_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-16_changes.md -------------------------------------------------------------------------------- /history/2021-08-16_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-08-16_projects.csv -------------------------------------------------------------------------------- /history/2021-09-16_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-09-16_changes.md -------------------------------------------------------------------------------- /history/2021-09-16_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-09-16_projects.csv -------------------------------------------------------------------------------- /history/2021-09-27_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-09-27_changes.md -------------------------------------------------------------------------------- /history/2021-09-27_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-09-27_projects.csv -------------------------------------------------------------------------------- /history/2021-10-04_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-10-04_changes.md -------------------------------------------------------------------------------- /history/2021-10-04_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-10-04_projects.csv -------------------------------------------------------------------------------- /history/2021-10-18_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-10-18_changes.md -------------------------------------------------------------------------------- /history/2021-10-18_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-10-18_projects.csv -------------------------------------------------------------------------------- /history/2021-12-06_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-12-06_changes.md -------------------------------------------------------------------------------- /history/2021-12-06_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-12-06_projects.csv -------------------------------------------------------------------------------- /history/2021-12-13_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-12-13_changes.md -------------------------------------------------------------------------------- /history/2021-12-13_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2021-12-13_projects.csv -------------------------------------------------------------------------------- /history/2022-01-24_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2022-01-24_changes.md -------------------------------------------------------------------------------- /history/2022-01-24_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2022-01-24_projects.csv -------------------------------------------------------------------------------- /history/2023-03-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-03-01_changes.md -------------------------------------------------------------------------------- /history/2023-03-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-03-01_projects.csv -------------------------------------------------------------------------------- /history/2023-05-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-05-01_changes.md -------------------------------------------------------------------------------- /history/2023-05-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-05-01_projects.csv -------------------------------------------------------------------------------- /history/2023-08-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-08-01_changes.md -------------------------------------------------------------------------------- /history/2023-08-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2023-08-01_projects.csv -------------------------------------------------------------------------------- /history/2024-02-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-02-01_changes.md -------------------------------------------------------------------------------- /history/2024-02-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-02-01_projects.csv -------------------------------------------------------------------------------- /history/2024-03-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-03-01_changes.md -------------------------------------------------------------------------------- /history/2024-03-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-03-01_projects.csv -------------------------------------------------------------------------------- /history/2024-04-03_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-04-03_changes.md -------------------------------------------------------------------------------- /history/2024-04-03_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-04-03_projects.csv -------------------------------------------------------------------------------- /history/2024-10-02_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-10-02_changes.md -------------------------------------------------------------------------------- /history/2024-10-02_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-10-02_projects.csv -------------------------------------------------------------------------------- /history/2024-12-01_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-12-01_changes.md -------------------------------------------------------------------------------- /history/2024-12-01_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/history/2024-12-01_projects.csv -------------------------------------------------------------------------------- /latest-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/latest-changes.md -------------------------------------------------------------------------------- /projects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/best-of-ml-rust/HEAD/projects.yaml --------------------------------------------------------------------------------