1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 05:06:00 +02:00
tldr/pages/common/cargo-owner.md
Vitor Henrique af35564618
pages*: do not use config abbreviation (#12118)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-25 10:59:16 +05:30

594 B

cargo owner

Manage the owners of a crate on the registry. More information: https://doc.rust-lang.org/cargo/commands/cargo-owner.html.

  • Invite the given user or team as an owner:

cargo owner --add {{username|github:org_name:team_name}} {{crate}}

  • Remove the given user or team as an owner:

cargo owner --remove {{username|github:org_name:team_name}} {{crate}}

  • List owners of a crate:

cargo owner --list {{crate}}

  • Use the specified registry (registry names can be defined in the configuration - the default is https://crates.io):

cargo owner --registry {{name}}