{"id":15597099,"url":"https://github.com/alorel/argley-rs","last_synced_at":"2026-01-24T16:05:28.755Z","repository":{"id":176134266,"uuid":"655034173","full_name":"Alorel/argley-rs","owner":"Alorel","description":"Turn a struct into arguments for a Command.","archived":false,"fork":false,"pushed_at":"2024-10-21T21:27:04.000Z","size":79,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-27T19:58:28.620Z","etag":null,"topics":[],"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/Alorel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["Alorel"],"custom":["https://paypal.me/alorel"]}},"created_at":"2023-06-17T17:15:48.000Z","updated_at":"2024-10-07T22:23:32.000Z","dependencies_parsed_at":"2025-03-07T15:42:54.060Z","dependency_job_id":null,"html_url":"https://github.com/Alorel/argley-rs","commit_stats":null,"previous_names":["alorel/argley-rs"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Alorel/argley-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alorel%2Fargley-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alorel%2Fargley-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alorel%2Fargley-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alorel%2Fargley-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Alorel","download_url":"https://codeload.github.com/Alorel/argley-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Alorel%2Fargley-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730860,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"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":[],"created_at":"2024-10-03T01:20:29.752Z","updated_at":"2026-01-24T16:05:28.734Z","avatar_url":"https://github.com/Alorel.png","language":"Rust","funding_links":["https://github.com/sponsors/Alorel","https://paypal.me/alorel"],"categories":[],"sub_categories":[],"readme":"[![master CI badge](https://img.shields.io/github/actions/workflow/status/Alorel/argley-rs/ci.yml?label=master%20CI)](https://github.com/Alorel/argley-rs/actions/workflows/ci.yml?query=branch%3Amaster)\n[![crates.io badge](https://img.shields.io/crates/v/argley)](https://crates.io/crates/argley)\n[![docs.rs badge](https://img.shields.io/docsrs/argley?label=docs.rs)](https://docs.rs/argley)\n[![dependencies badge](https://img.shields.io/librariesio/release/cargo/argley)](https://libraries.io/cargo/argley)\n\nTurn a struct into arguments for a [Command](https://doc.rust-lang.org/stable/std/process/struct.Command.html).\n\n```rust\nuse argley::prelude::*;\n\n#[derive(Args)]\nstruct Args\u003c'a\u003e {\n  compress: bool,\n  \n  #[arg(rename = \"dir\")]\n  output_dir: \u0026'a Path,\n  \n  #[arg(variadic)]\n  input_files: Vec\u003c\u0026'a Path\u003e,\n}\n\nlet args = Args {\n  compress: true,\n  output_dir: Path::new(\"./output\"),\n  input_files: vec![Path::new(\"./foo.txt\"), Path::new(\"./bar.txt\")],\n};\n\nlet output = Command::new(\"some-application\")\n  .add_arg_set(\u0026args)\n  .output()\n  .unwrap();\n```\n\nSupport for [async-std](https://crates.io/crates/async-std) and [tokio](https://crates.io/crates/tokio) can be enabled\nvia their respective features.\n\nSee crate-level docs for detailed configuration options.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falorel%2Fargley-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falorel%2Fargley-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falorel%2Fargley-rs/lists"}