{"id":20631285,"url":"https://github.com/ulagbulag/or-tools-rs","last_synced_at":"2025-10-31T03:35:23.605Z","repository":{"id":206976619,"uuid":"718157133","full_name":"ulagbulag/or-tools-rs","owner":"ulagbulag","description":"Unofficial Rust wrappers to the C++ library Google OR-Tools, open source software for combinatorial optimization","archived":false,"fork":false,"pushed_at":"2024-05-18T19:49:32.000Z","size":80,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-28T01:52:36.076Z","etag":null,"topics":["combinatorial-optimization","csp","gra","graph","linear-solvers","optimization","or-tools","routing","rust","sat"],"latest_commit_sha":null,"homepage":"","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/ulagbulag.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-13T13:59:25.000Z","updated_at":"2025-01-20T21:09:31.000Z","dependencies_parsed_at":"2023-12-15T21:17:49.813Z","dependency_job_id":"1e331b80-8962-4ddf-a27f-3165061af7f8","html_url":"https://github.com/ulagbulag/or-tools-rs","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"57447c2fc7e38c46f53411000bf68192c4b08096"},"previous_names":["ulagbulag/or-tools-rs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulagbulag%2For-tools-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulagbulag%2For-tools-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulagbulag%2For-tools-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ulagbulag%2For-tools-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ulagbulag","download_url":"https://codeload.github.com/ulagbulag/or-tools-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249131358,"owners_count":21217730,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["combinatorial-optimization","csp","gra","graph","linear-solvers","optimization","or-tools","routing","rust","sat"],"created_at":"2024-11-16T14:11:48.209Z","updated_at":"2025-10-31T03:35:18.575Z","avatar_url":"https://github.com/ulagbulag.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Google Or-Tools\n\n[![Current Crates.io Version](https://img.shields.io/crates/v/or-tools.svg)](https://crates.io/crates/or-tools)\n\n`or-tools` is a Rust library that binds to certain specific features of the [Google Or-Tools C++ library](https://github.com/google/or-tools).\n\nThis repository will dedicate itself to improve the library's content.\n\nThese include:\n\n- TBD # TODO: to be implemented!\n\n## Building\n\n### Minimum Rust Version\n\nPlease udjust your Rust compiler to version `1.73` or higher.\n\n### Supported Platforms\n\n- Linux { aarch64, x86_64 }\n  - Alpine Edge\n  - [Arch Linux (AUR)](https://aur.archlinux.org/packages/or-tools)\n  - CentOS 7 LTS\n  - Debian 11\n  - Fedora 37, 38\n  - OpenSuse Leap\n  - Ubuntu 20.04, 22.04, 23.04\n- MacOS { aarch64, x86_64 }\n  - macOS Intel\n  - macOS M1\n- Windows { x86_64 }\n  - Visual Studio 2022\n\nYour package manager may not support deployment on platforms marked as `Supported` above.\n\nFor better maintenance, please let us know whether the other platforms support it.\nBesides, you may claim us whether the specific platform should support it through `Issues` .\n\n### Dependencies\n\n- C++20 Compiler (GCC 10 or above)\n- `cmake \u003e= 3.18`\n- \\[optional\\] `Or-Tools C++`\n\n#### Building Dependencies\n\n- git\n\n### Building Native library\n\n`or-tools` requires `Or-Tools` to be installed. You can either provide a existing system-wide installation, or build it with this library.\n\n- To build it in compile-time if there is no system library:\n  - ```sh\n    cargo build\n    ```\n- To forcely use a system-wide dependency:\n  - ```sh\n    cargo build --no-default-features\n    ```\n- To forcely build it in compile-time:\n  - ```sh\n    cargo build --features build-native-force\n    ```\n\nThe C++ library `Or-Tools` will be installed via `or-tools-sys` when the `build-native` feature flag is enabled.\n\nFor the build, this library uses `cmake`, so please make sure to have [ `cmake` ](https://cmake.org/install/) .\n\nThe `build-native` flag is **enabled by default**, supporting build speed and convenience at the same time.\n\nThe `build-native-force` flag overrides native libraries installed on the system. It is **disabled by default**, offering increased build times.\n\n### Building Rust package\n\n`or-tools` includes a `solver-all` feature flag **enabled by default**.\n\n`solver-all` will enable all kinds of supported **open-source** solvers.\nThe latest information about the solvers can be found here: https://github.com/google/or-tools/blob/stable/cmake/README.md#solvers-supported\n\nThe `solver-all` flag can be disabled with `cargo build --no-default-features`.\n\n#### GPL/Proprietary Solvers\n\n`or-tools` includes a `solver-all-nonfree` feature flag that can be used with `cargo build --features solver-all-nonfree` .\n\n`solver-all` will enable all kinds of supported solvers including **GPL** and/or **proprietary** ones.\nThe latest information about the solvers can be found here: https://github.com/google/or-tools/blob/stable/cmake/README.md#solvers-supported\n\nFor detailed instructions on embedding proprietary solvers, please follow to the link below:\n\n- CPLEX: https://github.com/google/or-tools/blob/stable/cmake/README.md#enabling-cplex-support\n- XPRESS: https://github.com/google/or-tools/blob/stable/cmake/README.md#enabling-xpress-support\n\nThe `solver-all-nonfree` flag is disabled by default, offering increased build times.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulagbulag%2For-tools-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fulagbulag%2For-tools-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulagbulag%2For-tools-rs/lists"}