Changing crate owner
Tip
You have to be logged-in to crates.io registry before executing any of the following commands.
Adding owner (user)
cargo owner --add login crate_name
For example, to add an owner DariuszDepta to crate antex, type:
cargo owner --add DariuszDepta antex
Adding owner (team)
cargo owner --add github:organization:team crate_name
For example, to add a core team of EngosSoftware organization as an owner to crate antex, type:
cargo owner --add github:EngosSoftware:core antex
Removing owner (user)
cargo owner --remove login crate_name
For example, to remove an owner DariuszDepta from crate antex, type:
cargo owner --remove DariuszDepta antex
Removing owner (team)
For example, to remove a core team of EngosSoftware organization from being an owner of the crate antex, type:
cargo owner --remove github:EngosSoftware:core antex