| Crates.io | authors |
| lib.rs | authors |
| version | 1.0.0 |
| created_at | 2026-01-12 16:49:08.94675+00 |
| updated_at | 2026-01-12 16:49:08.94675+00 |
| description | Print and format authors from ["name |
| homepage | https://github.com/adam-gaia/authors |
| repository | https://github.com/adam-gaia/authors |
| max_upload_size | |
| id | 2038183 |
| size | 50,811 |
Print and format authors from ["name
This utility is meant to be used in a pipeline with toml-path, for extracting only the names of authors without the emails
$ toml-path --raw-output .package.authors Cargo.toml | authors --names
Adam Gaia
$ authors "foo <foo@bar.com>, foo2 <foo2@bar.com>"
foo <foo@bar.com>, foo2 <foo2@bar.com>
$ authors --names "foo <foo@bar.com>, foo2 <foo2@bar.com>"
foo, foo2
$ authors --emails "foo <foo@bar.com>, foo2 <foo2@bar.com>"
foo@bar.com, foo2@bar.com
$ echo "foo <foo@bar.com>, foo2 <foo2@bar.com>" | authors --names
foo, foo2