{"id":35867823,"url":"https://github.com/eclipse-score/baselibs_rust","last_synced_at":"2026-01-19T13:00:38.547Z","repository":{"id":324576163,"uuid":"1083832591","full_name":"eclipse-score/baselibs_rust","owner":"eclipse-score","description":"Repository for the Rust baselibs","archived":false,"fork":false,"pushed_at":"2026-01-10T00:06:28.000Z","size":5460,"stargazers_count":0,"open_issues_count":11,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-10T21:54:17.967Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://eclipse-score.github.io/baselibs_rust","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/eclipse-score.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-26T19:52:38.000Z","updated_at":"2026-01-07T15:23:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/eclipse-score/baselibs_rust","commit_stats":null,"previous_names":["eclipse-score/baselibs_rust"],"tags_count":2,"template":false,"template_full_name":"eclipse-score/module_template","purl":"pkg:github/eclipse-score/baselibs_rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fbaselibs_rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fbaselibs_rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fbaselibs_rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fbaselibs_rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-score","download_url":"https://codeload.github.com/eclipse-score/baselibs_rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Fbaselibs_rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28568833,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-08T14:08:28.064Z","updated_at":"2026-01-19T13:00:38.541Z","avatar_url":"https://github.com/eclipse-score.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base Libraries - Rust\n\nFoundational Rust libraries providing common functionality for S-CORE modules.\n\n---\n\n## 📂 Project Structure\n\n| File/Folder                                          | Description                                |\n| ---------------------------------------------------- | ------------------------------------------ |\n| `README.md`                                          | Short description and build instructions   |\n| `src/`                                               | Source files                               |\n| `tests/`                                             | Unit tests (UT) and integration tests (IT) |\n| `examples/`                                          | Usage examples                             |\n| `docs/`                                              | Documentation using `docs-as-code`         |\n| `.github/workflows/`                                 | CI/CD pipelines                            |\n| `.vscode`                                            | Recommended VS Code settings               |\n| `.bazelrc`, `.bazelversion`, `MODULE.bazel`, `BUILD` | Bazel configuration and settings           |\n| `Cargo.toml`, `rust-toolchain.toml`, `rustfmt.toml`  | Cargo configuration and settings           |\n| `project_config.bzl`                                 | Project-specific metadata for Bazel macros |\n| `LICENSE`, `LICENSE.md`                              | Licensing information                      |\n| `CONTRIBUTION.md`                                    | Contribution guidelines                    |\n| `NOTICE`                                             | Notices for Eclipse Safe Open Vehicle Core |\n\n---\n\n## 🚀 Getting Started\n\n### 1️⃣ Clone the Repository\n\n```sh\ngit clone https://github.com/eclipse-score/baselibs_rust.git\ncd baselibs_rust\n```\n\n### 2️⃣ Build the Examples of module\n\n\u003e DISCLAIMER: Depending what module implements, it's possible that different\n\u003e configuration flags needs to be set on command line.\n\nTo build all targets of the module the following command can be used:\n\n```sh\nbazel build //src/...\n```\n\nThis command will instruct Bazel to build all targets that are under Bazel\npackage `src/`. The ideal solution is to provide single target that builds\nartifacts, for example:\n\n```sh\nbazel build //src/\u003cmodule_name\u003e:release_artifacts\n```\n\nwhere `:release_artifacts` is filegroup target that collects all release\nartifacts of the module.\n\n\u003e NOTE: This is just proposal, the final decision is on module maintainer how\n\u003e the module code needs to be built.\n\n### 3️⃣ Run Tests\n\n```sh\nbazel test //tests/...\n```\n\n---\n\n## 🛠 Tools \u0026 Linters\n\n**Tools and linters** from **centralized repositories** are integrated to ensure consistency across projects.\n\n- **Rust:** `clippy`, `rustfmt`, `Rust Unit Tests`\n- **CI/CD:** GitHub Actions for automated builds and tests\n\n---\n\n## 📖 Documentation\n\n- A **centralized docs structure** is planned.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Fbaselibs_rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-score%2Fbaselibs_rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Fbaselibs_rust/lists"}