Publish To cargo Always Fails?

I have published a few packages to cargo using the "rust-to-npm" and also just with the cargo publish command.

However, when I try to publish anything now I get a strange error from cargo...

I am trying to publish the "01_hello_world" project here: rust-cli-examples/01_hello_world at main · JimLynchCodes/rust-cli-examples · GitHub

I have set up my credentials using "cargo login".

When I run cargo publish though it just gives me this vague error...

error: failed to publish to registry at https://crates.io

Caused by:
  the remote server responded with an error: this crate exists but you don't seem to be an owner. If you believe this is a mistake, perhaps you need to accept an invitation to be an owner before publishing.

Am I doing something wrong here? Is there some issue that the main crate.io registry is down??

thanks

The crate already exists and you don't seem to be the person owning it. Try renaming your crate by setting the package.name field in your Cargo.toml to something other than hello_world, like jam_hello_world (doesn't exist yet), for example.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.