A project I'm working on has dependency issues. for context: - I'm working on `mix` - `mix` depends on `nim-libp2p#gossipsub-custom-conn` in nim-libp2p, the master and gossipsub branch work fine when you do: `nim check libp2p.nim`, but fails on `nimble test`: "Cannot satisfy the dependency on chronicles 0.10.3 and chronicles 0.11.0" nim-libp2p was using chronicles 0.10.2 for a long time up until a few weeks ago when it got bumped to 10.3, then last week, it got the `& < 0.11.0` constraint added: https://github.com/vacp2p/nim-libp2p/pull/1423 If I take out the `0.11.0` constraint locally, the test builds fine, but that's problematic. Any suggestions on how to go about working this problem?