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
I think the ~= should be either == or >=. The ampersand doesn't seem to be valid for nimble.
# nimble install https://github.com/crashappsec/con4m
Downloading https://github.com/crashappsec/con4m using git
Tip: 2 messages have been suppressed, use --verbose to show them.
Error: Could not read package info file in /tmp/nimble_14/githubcom_crashappseccon4m/con4m.nimble;
... Reading as ini file failed with:
... Invalid section: .
... Evaluating as NimScript file failed with:
... Unable to parse dependency version range: Unexpected char in version range ' ~= 0.2.2': ~.
The text was updated successfully, but these errors were encountered:
Sorry, just noticed this. The issue here is ~= is a Nimble 2.0 feature; you need to run nimble install nimble. Though, changing to >= does work, just has slightly different semantics.
I'll probably move this back to >= though. The whole point of moving to ~= was hoping to avoid some of the pain of nimble, but it didn't really help fix the problems I was having with triangular dependencies in a projecting using con4m (and nimutils).
con4m/con4m.nimble
Line 12 in 45f5021
I think the
~=
should be either==
or>=
. The ampersand doesn't seem to be valid for nimble.The text was updated successfully, but these errors were encountered: