Currently, the latest parse-display-derive@0.8.1still depends on regex-syntax@0.6, while the newer regex-syntax@0.7 is available since April. regex, starting with 1.8.0, already uses the newer regex-syntax@0.7, which causes it to be duplicated, once the older version which parse-display-derive directly depends on, and once the newer version through the regex crate:
Because of this, parse-display-derive should probably be updated to support the latest regex-syntax. There were some major (internal) changes to the regex crate recently, but I don't know if they also apply to regex-syntax and parse-display-derive should be changed because of them.
Currently, the latest
parse-display-derive@0.8.1
still depends onregex-syntax@0.6
, while the newerregex-syntax@0.7
is available since April.regex
, starting with1.8.0
, already uses the newerregex-syntax@0.7
, which causes it to be duplicated, once the older version whichparse-display-derive
directly depends on, and once the newer version through theregex
crate:Because of this,
parse-display-derive
should probably be updated to support the latestregex-syntax
. There were some major (internal) changes to theregex
crate recently, but I don't know if they also apply toregex-syntax
andparse-display-derive
should be changed because of them.