Subject: | FYI circular dependency with Type::Tiny |
This was reported during the construction of a dependency
graph for the distros installed by my my automated build.
Arguably it's a weakness in that code since Type::Tie is
only a recommendation. Fixed by adding this to my system
our %TARBALL_MNAME_REMOVE_DEPENDENCIES =
(
...
'Type::Tiny' => { 'Type::Tie' => 'break circular dependency Type::Tiny <-> Type::Tie' },
)
Type-Tiny-0.044 META.json
"runtime": {
...
"recommends": {
...
"Type::Tie": "0",
Type-Tie-0.007
"test": {
...
"requires": {
...
"Types::Standard": "0.004"
I don't think there's any change you need to make,