{"id":13408920,"url":"https://github.com/foundationdb-rs/foundationdb-rs","last_synced_at":"2025-03-14T14:30:21.928Z","repository":{"id":37496723,"uuid":"436297183","full_name":"foundationdb-rs/foundationdb-rs","owner":"foundationdb-rs","description":" FoundationDB Rust client api ","archived":false,"fork":false,"pushed_at":"2025-03-12T09:01:25.000Z","size":21381,"stargazers_count":142,"open_issues_count":39,"forks_count":27,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-12T10:19:47.123Z","etag":null,"topics":["client","foundationdb","rust"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/foundationdb","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/foundationdb-rs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2021-12-08T15:28:21.000Z","updated_at":"2025-03-12T09:00:07.000Z","dependencies_parsed_at":"2023-02-16T17:46:14.947Z","dependency_job_id":"8625b06a-f313-4130-8ef1-937d258698a0","html_url":"https://github.com/foundationdb-rs/foundationdb-rs","commit_stats":{"total_commits":490,"total_committers":25,"mean_commits":19.6,"dds":0.6938775510204082,"last_synced_commit":"e8463554a2cc5f582842bf6b27aef0db57f00456"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foundationdb-rs%2Ffoundationdb-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foundationdb-rs%2Ffoundationdb-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foundationdb-rs%2Ffoundationdb-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foundationdb-rs%2Ffoundationdb-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/foundationdb-rs","download_url":"https://codeload.github.com/foundationdb-rs/foundationdb-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243196808,"owners_count":20251897,"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":["client","foundationdb","rust"],"created_at":"2024-07-30T20:00:56.570Z","updated_at":"2025-03-14T14:30:21.890Z","avatar_url":"https://github.com/foundationdb-rs.png","language":"Rust","funding_links":[],"categories":["Bindings"],"sub_categories":[],"readme":"[![Discord](https://img.shields.io/discord/925467557903884349)](https://discord.gg/zkgtbtFfWY)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/foundationdb-rs/foundationdb-rs/ci.yml?branch=main)](https://github.com/foundationdb-rs/foundationdb-rs/actions)\n[![dependency status](https://deps.rs/repo/github/foundationdb-rs/foundationdb-rs/status.svg)](https://deps.rs/repo/github/foundationdb-rs/foundationdb-rs)\n[![Codecov](https://img.shields.io/codecov/c/github/foundationdb-rs/foundationdb-rs)](https://codecov.io/gh/foundationdb-rs/foundationdb-rs)\n![Rustc 1.82+](https://img.shields.io/badge/rustc-1.82+-lightgrey)\n\n# FoundationDB Rust Client\n\nThe repo consists of multiple crates:\n\n| Library                                            | Status                                                                                                                                                                                                          | Description                                                 |\n|----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|\n| [**foundationdb**](foundationdb/README.md)         | [![Crates.io](https://img.shields.io/crates/v/foundationdb)](https://crates.io/crates/foundationdb) [![foundationdb](https://docs.rs/foundationdb/badge.svg)](https://docs.rs/foundationdb)                     | High level FoundationDB client API                          |\n| [**foundationdb-sys**](foundationdb-sys/README.md) | [![Crates.io](https://img.shields.io/crates/v/foundationdb-sys)](https://crates.io/crates/foundationdb-sys) [![foundationdb-sys](https://docs.rs/foundationdb-sys/badge.svg)](https://docs.rs/foundationdb-sys) | C API bindings for FoundationDB                             |\n| **foundationdb-gen**                               | n/a                                                                                                                                                                                                             | Code generator for common options and types of FoundationDB |\n\nThe current version requires rustc 1.82+ to work.\nThe previous version (0.3) is still maintained and is available within the 0.3 branch.\n\nYou can access the `main` branch documentation [here](https://foundationdb-rs.github.io/foundationdb-rs/foundationdb/index.html).\n\n## Supported platforms\n\nSupported platforms are listed on the [foundationdb's README](foundationdb/README.md).\n\n## Develop with Nix\n \nA flake.nix is provided to develop the bindings. We recommend add a cluster-file on the `configuration.nix` file:\n\n```nix\n{\n  environment.etc.\"foundationdb/fdb.cluster\" = {\n    mode = \"0555\";\n    text = ''\n      docker:docker@127.0.0.1:4500\n    '';\n  };\n}\n```\n\nA FoundationDB cluster can be run using these commands:\n\n```shell\ndocker run -p 4500:4500 --name fdb -it --rm -d foundationdb/foundationdb:7.1.19\ndocker exec fdb fdbcli --exec \"configure new single memory\"\n```\n\n## Correctness\n\nSpecial care has been set up to be sure that the crate is correct, like official bindings. Every hour, we are running thousands of seeds on the [BindingTester](https://github.com/apple/foundationdb/blob/master/bindings/bindingtester/spec/bindingApiTester.md).\n\n## License\n\nLicensed under either of\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally\nsubmitted for inclusion in the work by you, as defined in the Apache-2.0\nlicense, shall be dual licensed as above, without any additional terms or\nconditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoundationdb-rs%2Ffoundationdb-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoundationdb-rs%2Ffoundationdb-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoundationdb-rs%2Ffoundationdb-rs/lists"}