-
Notifications
You must be signed in to change notification settings - Fork 40
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
UI Differentiating between Initializing vs Updating #61
Labels
Comments
epage
added a commit
to epage/cargo-edit
that referenced
this issue
Aug 27, 2021
This was inspired by running into errors where `cargo add inquire` was not adding the latest version. We've seen similar problems during the development of `crates-index`, so hoping what they've done fixes this. Even if it doesn't solve this problem, hopefully by nature of using a shared crate means it will get more use and more eyes to make it more reliable in the long term. Handling retrying the index is annoying. I opened frewsxcv/rust-crates-index#62 Note: in the next version of crates-index - Opening an index will implicitly create it, so we won't be able to differentiate in our message whether we are initializing or updating. See frewsxcv/rust-crates-index#61 - We will be able to open an Index by URL, which will allow us to remove more logic
epage
added a commit
to epage/cargo-edit
that referenced
this issue
Aug 30, 2021
This was inspired by running into errors where `cargo add inquire` was not adding the latest version. We've seen similar problems during the development of `crates-index`, so hoping what they've done fixes this. Even if it doesn't solve this problem, hopefully by nature of using a shared crate means it will get more use and more eyes to make it more reliable in the long term. Handling retrying the index is annoying. I opened frewsxcv/rust-crates-index#62 Note: in the next version of crates-index - Opening an index will implicitly create it, so we won't be able to differentiate in our message whether we are initializing or updating. See frewsxcv/rust-crates-index#61 - We will be able to open an Index by URL, which will allow us to remove more logic
epage
added a commit
to epage/cargo-edit
that referenced
this issue
Aug 31, 2021
This was inspired by running into errors where `cargo add inquire` was not adding the latest version. We've seen similar problems during the development of `crates-index`, so hoping what they've done fixes this. Even if it doesn't solve this problem, hopefully by nature of using a shared crate means it will get more use and more eyes to make it more reliable in the long term. Handling retrying the index is annoying. I opened frewsxcv/rust-crates-index#62 Note: in the next version of crates-index - Opening an index will implicitly create it, so we won't be able to differentiate in our message whether we are initializing or updating. See frewsxcv/rust-crates-index#61 - We will be able to open an Index by URL, which will allow us to remove more logic
ordian
pushed a commit
to killercup/cargo-edit
that referenced
this issue
Aug 31, 2021
This was inspired by running into errors where `cargo add inquire` was not adding the latest version. We've seen similar problems during the development of `crates-index`, so hoping what they've done fixes this. Even if it doesn't solve this problem, hopefully by nature of using a shared crate means it will get more use and more eyes to make it more reliable in the long term. Handling retrying the index is annoying. I opened frewsxcv/rust-crates-index#62 Note: in the next version of crates-index - Opening an index will implicitly create it, so we won't be able to differentiate in our message whether we are initializing or updating. See frewsxcv/rust-crates-index#61 - We will be able to open an Index by URL, which will allow us to remove more logic
I think that if there was a way to instantiate a As far as I know, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was looking at using
crates-index
incargo-edit
and noticed inmaster
that instantiating anIndex
will retrieve if needed, compared to before where the two actions were distinct.No idea if
cargo-edit
considers this important but provides a different user message for retrieve vs update (Initializing vs Updating).The text was updated successfully, but these errors were encountered: