What is cargo trying to tell me here with this final message? :
error: test failed, to rerun pass '--lib'
Even the Cargo book has test examples showing this exact final line, without explanation. It almost sounds like it is saying, "If you don't pass --lib, we won't rerun the tests" - Does it pull test results from a cache?
If I add "--lib" to my command line, thus: cargo test --features some_feature --lib, it doesn't seem to do anything special.
Doing some digging, I found a Cargo code change that seems to be trying to show "{pkg_info}--lib"
So, what is Cargo trying to tell me? Something meaningful, or is it just a bug that confuses new users?