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 just installed 0.9.2 and it breaks out of the box if you've had a previous version of chronicles (or rather a previous version's dependencies) installed.
This appears to happen due to a lack of faststreams in the nimble dependencies. A new requires "faststreams >= 0.2.0" should be added to chronicles.nimble, or chronicles attempts to use the previous version of fastreams, which has different module names.
As a side note, json_serialization should be versioned in the nimble file, although right now that wouldn't fix the problem of it also trying to use the exisiting faststreams 0.1.0 instead of 0.2.0. This is due to the json_serialization package version not being revved properly after the fixes for faststreams 0.2.0. I've also filed an issue in the json_serialization package's repo.
The text was updated successfully, but these errors were encountered:
I just installed 0.9.2 and it breaks out of the box if you've had a previous version of chronicles (or rather a previous version's dependencies) installed.
This appears to happen due to a lack of
faststreams
in the nimble dependencies. A newrequires "faststreams >= 0.2.0"
should be added to chronicles.nimble, or chronicles attempts to use the previous version offastreams
, which has different module names.As a side note,
json_serialization
should be versioned in the nimble file, although right now that wouldn't fix the problem of it also trying to use the exisitingfaststreams
0.1.0 instead of 0.2.0. This is due to thejson_serialization
package version not being revved properly after the fixes forfaststreams
0.2.0. I've also filed an issue in thejson_serialization
package's repo.The text was updated successfully, but these errors were encountered: