YAML merge keys, as defined here should be supported.
While not part of the standard specification, it is still recommended to support as:
The use of these tags is not mandatory. However these tags represent types that are useful across a wide range of applications and it is strongly recommended they be used whenever appropriate to promote interoperability.
Source
This will technically be a breaking change.
Example Behavior
a: &a #Anchor
b: 1
c: *a #Normal alias
d:
<<: *a #Merge alias
e: 2
Would result in:
a:
b: 1
c:
b: 1
d:
b: 1
e: 2
Tasks
YAML merge keys, as defined here should be supported.
While not part of the standard specification, it is still recommended to support as:
This will technically be a breaking change.
Example Behavior
Would result in:
Tasks
serde_yamlmerge_keytest