{"id":21629754,"url":"https://github.com/mozilla-services/remote-settings-client","last_synced_at":"2025-07-17T12:31:58.995Z","repository":{"id":37081646,"uuid":"273290260","full_name":"mozilla-services/remote-settings-client","owner":"mozilla-services","description":"Remote-Settings Client built using Rust","archived":false,"fork":false,"pushed_at":"2024-11-07T15:35:57.000Z","size":384,"stargazers_count":5,"open_issues_count":16,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-11-07T16:35:29.893Z","etag":null,"topics":["mozilla","remote-settings","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mozilla-services.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2020-06-18T16:39:57.000Z","updated_at":"2024-11-07T15:35:06.000Z","dependencies_parsed_at":"2024-03-18T11:25:56.763Z","dependency_job_id":"c8559652-20b8-474f-b77e-c072d28cad32","html_url":"https://github.com/mozilla-services/remote-settings-client","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Fremote-settings-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Fremote-settings-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Fremote-settings-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Fremote-settings-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mozilla-services","download_url":"https://codeload.github.com/mozilla-services/remote-settings-client/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226260580,"owners_count":17596495,"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":["mozilla","remote-settings","rust"],"created_at":"2024-11-25T02:08:39.388Z","updated_at":"2025-07-17T12:31:58.982Z","avatar_url":"https://github.com/mozilla-services.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Remote Settings Client\n\n\u003e **Warning**: This repository was archived in January 2025. The official Rust client for Remote Settings now lives at https://github.com/mozilla/application-services/tree/main/components/remote_settings\n\nA Rust Remote Settings Client to fetch collection data.\n\nAvailable features:\n\n- Synchronization of local storage via [`rkv`](https://github.com/mozilla/rkv/), memory, or filesystem\n- Signatures and cert chains verification via NSS [`rc_crypto`](https://github.com/mozilla/application-services/tree/main/components/support/rc_crypto) or [`ring`](https://lib.rs/crates/ring)+[`oid-registry`](https://lib.rs/crates/oid-registry)\n- Download of attachments\n- Write operations on records\n- Signoff operations (request review, approve, reject)\n\n\u003c!-- - Cross-Platform\n- Robust --\u003e\n\nRelies on Mozilla's [viaduct](https://github.com/mozilla/application-services/tree/v75.0.0/components/viaduct) for its pluggable HTTP backend (eg. `reqwest` or `FFI` on Android).\n\nSee also the `Storage` and `Verification` traits to extend or customize the client behaviour.\n\n## Quick start\n\n`Cargo.toml`:\n\n```toml\n[dependencies]\nremote-settings-client = { version = \"0.1\", features = [\"ring_verifier\"] }\nviaduct = { git = \"https://github.com/mozilla/application-services\", rev = \"v75.2.0\"}\nviaduct-reqwest = { git = \"https://github.com/mozilla/application-services\", rev = \"v75.2.0\"}\n```\n\nMinimal example:\n\n```rust\nuse remote_settings_client::Client;\npub use viaduct::set_backend;\npub use viaduct_reqwest::ReqwestBackend;\n\nfn main() {\n  set_backend(\u0026ReqwestBackend).unwrap();\n\n  let client = Client::builder()\n    .collection_name(\"search-config\")\n    .build();\n\n  match client.get() {\n    Ok(records) =\u003e println!(\"{:?}\", records),\n    Err(error) =\u003e println!(\"Error fetching/verifying records: {:?}\", error),\n  };\n}\n```\n\nSee also our [demo project](rs-client-demo)!\n\n## Documentation\n\n[Crate documentation](https://docs.rs/remote_settings_client)\n\n## Logging\n\nUsing [env_logger](https://docs.rs/env_logger), the log level can be set via an environ variable:\n\n`RUSTLOG={debug/info} cargo run`\n\n```rust\nfn main() {\n  env_logger::init() // initialize logger\n  ..\n}\n```\n\n## License\n\nLicensed under Mozilla Public License, Version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmozilla-services%2Fremote-settings-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmozilla-services%2Fremote-settings-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmozilla-services%2Fremote-settings-client/lists"}