{"id":39504381,"url":"https://github.com/rage/tmc-langs-rust","last_synced_at":"2026-01-18T05:51:34.060Z","repository":{"id":43116950,"uuid":"261182840","full_name":"rage/tmc-langs-rust","owner":"rage","description":"A library and CLI for supporting different programming languages in the TestMyCode programming assignment evaluator.","archived":false,"fork":false,"pushed_at":"2025-10-29T17:11:49.000Z","size":1002007,"stargazers_count":12,"open_issues_count":5,"forks_count":9,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-29T19:16:30.245Z","etag":null,"topics":["cli","rust","tmc"],"latest_commit_sha":null,"homepage":"https://tmc.mooc.fi/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rage.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-04T13:21:49.000Z","updated_at":"2025-10-16T07:58:39.000Z","dependencies_parsed_at":"2023-02-16T07:30:39.177Z","dependency_job_id":"378e8830-46c0-4d4e-8635-1956753f9ccb","html_url":"https://github.com/rage/tmc-langs-rust","commit_stats":null,"previous_names":[],"tags_count":133,"template":false,"template_full_name":null,"purl":"pkg:github/rage/tmc-langs-rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rage%2Ftmc-langs-rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rage%2Ftmc-langs-rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rage%2Ftmc-langs-rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rage%2Ftmc-langs-rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rage","download_url":"https://codeload.github.com/rage/tmc-langs-rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rage%2Ftmc-langs-rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28531696,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","rust","tmc"],"created_at":"2026-01-18T05:51:33.963Z","updated_at":"2026-01-18T05:51:34.049Z","avatar_url":"https://github.com/rage.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Framework for supporting different programming languages in TMC.\n\nTMC-langs provides an interface that encapsulates everything needed to support a new language in TMC by providing functionality such as downloading exercises, running tests and submitting them. A CLI wrapper is provided so that it's fairly convenient to call from other languages like Ruby.\n\n## Documentation\n\nDocumentation for the latest release is available at https://rage.github.io/tmc-langs-rust. Documentation is automatically built and deployed when creating a GitHub release.\n\nAdditional documentation for other aspects of TMC such as configuration file formats is included in the [docs](./docs) directory.\n\n## Included projects\n\n### tmc-langs-cli\n\nA \"frontend\" for tmc-langs. A binary CLI client for TMC-langs for IDEs. Intended to be used programmatically, for a CLI meant for manual use see [tmc-cli-rust](https://github.com/rage/tmc-cli-rust).\n\n### tmc-langs\n\nThe \"backend\". A library that provides a convenient API for implementing different frontends. A frontend (such as a CLI) should only depend on this library. The other libraries are considered internal.\n\n### tmc-client\n\nA library that abstracts over different TMC backends.\n\n### tmc-testmycode-client\n\nA library for communicating with the TestMyCode TMC server.\n\n### tmc-mooc-client\n\nA library for communicating with the mooc.fi TMC server.\n\n### tmc-langs-framework\n\nA library for creating language plugins.\n\n### tmc-langs-plugins\n\nA library that provides a convenient API abstracting over all the different language plugins.\n\n### tmc-langs-util\n\nA utility library that contains various kinds of useful functionality for other projects.\n\n### plugins/csharp\n\nA TMC plugin for C#.\n\n### plugins/java\n\nTMC plugins for Maven and Ant projects.\n\n### plugins/make\n\nA TMC plugin for Make.\n\n### plugins/notests\n\nA TMC plugin for projects with no tests.\n\n### plugins/python3\n\nA TMC plugin for Python 3.\n\n### plugins/r\n\nA TMC plugin for R.\n\n### Supported targets\n\n- Linux 64-bit (x86_64-unknown-linux-gnu)\n- Linux 32-bit (i686-unknown-linux-gnu)\n- Windows MSVC 64-bit (x86_64-pc-windows-msvc)\n- Windows MSVC 32-bit (i686-pc-windows-msvc)\n- MacOS x86 (x86_64-apple-darwin)\n- MacOS M1 (aarch64-apple-darwin)\n- ARM64 (aarch64-unknown-linux-gnu)\n- Armv7 (armv7-unknown-linux-gnueabihf)\n\nA musl (x86_64-unknown-linux-musl) build is also available, but it does not support Java exercises. This is because the Java support relies on dynamically linking libjvm, which is not supported by the musl build.\n\n## Contributing\n\nSee [CONTRIBUTING](CONTRIBUTING.md).\n\n## License\n\nLicensed under either of\n\n- Apache License, Version 2.0\n  ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license\n  ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frage%2Ftmc-langs-rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frage%2Ftmc-langs-rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frage%2Ftmc-langs-rust/lists"}