{"id":18616876,"url":"https://github.com/sile/erl_rpc","last_synced_at":"2026-04-01T19:35:28.599Z","repository":{"id":40540694,"uuid":"477072994","full_name":"sile/erl_rpc","owner":"sile","description":"Erlang RPC Client for Rust","archived":false,"fork":false,"pushed_at":"2026-03-20T06:56:41.000Z","size":38,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-20T23:29:15.838Z","etag":null,"topics":["erlang","rust"],"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/sile.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2022-04-02T14:08:11.000Z","updated_at":"2026-03-20T06:56:44.000Z","dependencies_parsed_at":"2024-11-07T03:42:15.306Z","dependency_job_id":"4dffcd89-a8d3-4365-b619-036af31dac62","html_url":"https://github.com/sile/erl_rpc","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"b8bfa7b7c78ed60cca9e32c823db1cb49499f605"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/sile/erl_rpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Ferl_rpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Ferl_rpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Ferl_rpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Ferl_rpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sile","download_url":"https://codeload.github.com/sile/erl_rpc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sile%2Ferl_rpc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291151,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: 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":["erlang","rust"],"created_at":"2024-11-07T03:38:04.635Z","updated_at":"2026-04-01T19:35:28.584Z","avatar_url":"https://github.com/sile.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"erl_rpc\n=======\n\n[![erl_rpc](https://img.shields.io/crates/v/erl_rpc.svg)](https://crates.io/crates/erl_rpc)\n[![Documentation](https://docs.rs/erl_rpc/badge.svg)](https://docs.rs/erl_rpc)\n[![Actions Status](https://github.com/sile/erl_rpc/workflows/CI/badge.svg)](https://github.com/sile/erl_rpc/actions)\n![License](https://img.shields.io/crates/l/erl_rpc)\n\nErlang RPC Client for Rust.\n\nExamples\n--------\n\n```rust\nsmol::block_on(async {\n    // Connect to an Erlang node.\n    let erlang_node = \"foo@localhost\";\n    let cookie = \"cookie-value\";\n    let client = erl_rpc::RpcClient::connect(erlang_node, cookie).await?;\n    let mut handle = client.handle();\n\n    // Run the RPC client as a background task.\n    smol::spawn(async {\n        if let Err(e) = client.run().await {\n            eprintln!(\"RpcClient Error: {}\", e);\n        }\n    }).detach();\n\n    // Execute an RPC: `erlang:processes/0`\n    let result = handle\n        .call(\"erlang\".into(), \"processes\".into(), erl_dist::term::List::nil())\n        .await?;\n    println!(\"{}\", result);\n    Ok(())\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsile%2Ferl_rpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsile%2Ferl_rpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsile%2Ferl_rpc/lists"}