Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot sync when using multiple crate registries #179

Open
decryphe opened this issue Apr 12, 2023 · 1 comment
Open

Cannot sync when using multiple crate registries #179

decryphe opened this issue Apr 12, 2023 · 1 comment

Comments

@decryphe
Copy link

In our company we have an internal crate registry for some internal libs that are made available this way. It's configured in ~/.cargo/config.toml and any dependencies located there refer to the name of that registry.

In the config file:

[registries]
company = { index = "ssh://git@git.company.com/libraries/rs/index.git" }

And in any Cargo.toml files:

...
[dependencies]
...
some-crate = { version = "*", registry = "company" }
...

When running cargo local-registry --sync Cargo.lock cargo-cache I get the following output:

error: failed to sync

Caused by:
  failed to copy `/home/decryphe/.cargo/registry/cache/github.com-1ecc6299db9ec823/some-crate-1.1.0.crate` to `/home/decryphe/repos/project/cargo-cache/some-crate-1.1.0.crate`

Caused by:
  No such file or directory (os error 2)

The file it should retrieve is located at /home/decryphe/.cargo/registry/cache/git.company.com-0c110f7961c08028/some-crate-1.1.0.crate.

I'm using version cargo-local-registry version 0.2.3.

@decryphe
Copy link
Author

I checked out #172 and can confirm that the changes do resolve all my issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant