{"id":13572943,"url":"https://github.com/polywrap/rust-wrap-client","last_synced_at":"2025-10-03T15:10:21.149Z","repository":{"id":61928827,"uuid":"553141583","full_name":"polywrap/rust-wrap-client","owner":"polywrap","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-09T07:35:11.000Z","size":102562,"stargazers_count":7,"open_issues_count":23,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-13T00:55:28.940Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/polywrap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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}},"created_at":"2022-10-17T19:30:28.000Z","updated_at":"2024-04-09T13:34:02.000Z","dependencies_parsed_at":"2023-10-03T11:21:19.657Z","dependency_job_id":"3e88c980-9efe-46ff-aa61-6c1cacf6b3a0","html_url":"https://github.com/polywrap/rust-wrap-client","commit_stats":null,"previous_names":["polywrap/rust-wrap-client","polywrap/rust-client"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polywrap%2Frust-wrap-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polywrap%2Frust-wrap-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polywrap%2Frust-wrap-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/polywrap%2Frust-wrap-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/polywrap","download_url":"https://codeload.github.com/polywrap/rust-wrap-client/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248650438,"owners_count":21139672,"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":[],"created_at":"2024-08-01T15:00:24.921Z","updated_at":"2025-10-03T15:10:16.089Z","avatar_url":"https://github.com/polywrap.png","language":"Rust","readme":"![polywrap-banner](https://raw.githubusercontent.com/polywrap/branding/master/assets/banner.png)\n\n# Rust Client [![codecov](https://codecov.io/gh/polywrap/rust-client/branch/main/graph/badge.svg?token=Z0VNH4R5UR)](https://codecov.io/gh/polywrap/rust-client)\n\nImplementation of the Polywrap client in Rust.\n\n## Installation\n\nAdd this to your Cargo.toml:\n\n```toml\n[dependencies]\npolywrap = 0.1.9\n```\n\n## Getting started\n\nCreate a new Polywrap Client Config Builder instance, add the bundles you want to use, and then create a new Polywrap Client instance from the builder.\n\n```rust\nuse polywrap::*;\n\n#[derive(Serialize)]\nstruct Sha3_256Args {\n    message: String,\n}\n\nfn main() {\n    let mut config = ClientConfig::new();\n    config.add(SystemClientConfig::default().into());\n    let client = Client::new(config.build());\n\n    let result = client.invoke::\u003cString\u003e(\n        \u0026uri!(\"wrapscan.io/polywrap/sha3@1.0\"),\n        \"sha3_256\",\n        Some(\u0026to_vec(\n            \u0026Sha3_256Args {\n                message: \"Hello Polywrap!\".to_string(),\n            }\n        ).unwrap()),\n        None,\n        None\n    );\n\n    match result {\n        Ok(v) =\u003e println!(\"{}\", v),\n        Err(e) =\u003e panic!(\"{}\", e),\n    }\n}\n```\n\n## Resources\n\n- [Documentation](https://docs.polywrap.io/)\n- [Examples](./examples/)\n- [Features supported](https://github.com/polywrap/client-readiness/tree/main/clients/rs/src/features)\n- [Support](https://discord.polywrap.io)\n\n## Contributions\n\nPlease check out our [contributing guide](./CONTRIBUTING.md) for guidelines about how to proceed.","funding_links":[],"categories":["Clients"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolywrap%2Frust-wrap-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpolywrap%2Frust-wrap-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpolywrap%2Frust-wrap-client/lists"}