exercism / rust-test-runner

GNU Affero General Public License v3.0
3 stars 15 forks source link

Version problem with "Robot name" #65

Closed bluthej closed 1 year ago

bluthej commented 1 year ago

Hi,

I have a solution for "Robot name" that works locally but not online. I get the following error:

error: failed to select a version for the requirement `libc = "^0.2.22"` (locked to 0.2.137)
candidate versions found which didn't match: 0.2.125
location searched: `/opt/test-runner/local-registry` index (which is replacing registry `crates-io`)
required by package `rand v0.8.5`
    ... which satisfies dependency `rand = "^0.8.5"` (locked to 0.8.5) of package `robot-name v0.0.0 (/mnt/exercism-iteration)`
perhaps a crate was updated and forgotten to be re-vendored?
As a reminder, you're using offline mode (--offline) which can sometimes cause surprising resolution failures, if this error is too confusing you may wish to retry without the offline flag.

Anything I can do? I tried using a lower version of rand to fix it but that breaks my code...

AdrianoII commented 1 year ago

Hey @bluthej, maybe the #66 fixed this, could you try it again?

bluthej commented 1 year ago

Hi @AdrianoII, yes that fixed it :) Thx very much!