You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
Describe the bug
When dependencies are specified using the "." format (see below, which is valid toml and recognized by cargo), an error Error:statusCode=404 is shown instead of whether the dependency is up-to-date.
[dependencies]
smoldot.version = "0.17.0"
To Reproduce
Steps to reproduce the behavior:
Create a cargo project
Add any dependency in this format instead of just smoldot = "0.17.0" (one way to add additional fields in a separate line)
Expected behavior
The up-to-date info (checkbox) to show behind this line instead of an error.
Screenshots
Additional Context
I am aware that dependencies can be specified on multiple lines with the following syntax (which has other benefits over the "." format):
[dependencies.smoldot]
version = "0.17.0"
The text was updated successfully, but these errors were encountered:
In this case, I guess you could just skip .version and it would be the same. However, this issue applies to things like .path too.
I.e. this gives red !!!:
Describe the bug
When dependencies are specified using the "." format (see below, which is valid toml and recognized by cargo), an error
Error:statusCode=404
is shown instead of whether the dependency is up-to-date.To Reproduce
Steps to reproduce the behavior:
smoldot = "0.17.0"
(one way to add additional fields in a separate line)Expected behavior
The up-to-date info (checkbox) to show behind this line instead of an error.
Screenshots
Additional Context
I am aware that dependencies can be specified on multiple lines with the following syntax (which has other benefits over the "." format):
The text was updated successfully, but these errors were encountered: