cargo-owner --- Manage the owners of a crate on the registry
cargo owner [options] --add login [crate]cargo owner [options] --remove login [crate]cargo owner [options] --list [crate]
This command will modify the owners for a crate on the registry. Owners of a crate can upload new versions and yank old versions. Non-team owners can also modify the set of owners, so take care!
This command requires you to be authenticated with either the --token option or using {{man “cargo-login” 1}}.
If the crate name is not specified, it will use the package name from the current directory.
See the reference for more information about owners and publishing.
{{#option “-a” “--add login...” }} Invite the given user or team as an owner. {{/option}}
{{#option “-r” “--remove login...” }} Remove the given user or team as an owner. {{/option}}
{{#option “-l” “--list” }} List owners of a crate. {{/option}}
{{> options-token }}
{{> options-index }}
{{> options-registry }}
{{/options}}
{} {{> options-display }} {{/options}}
{{> section-options-common }}
{{> section-environment }}
{{> section-exit-status }}
List owners of a package:
cargo owner --list foo
Invite an owner to a package:
cargo owner --add username foo
Remove an owner from a package:
cargo owner --remove username foo
{{man “cargo” 1}}, {{man “cargo-login” 1}}, {{man “cargo-publish” 1}}