yexp 0.1.2

yexp is a small tool for expand yaml files
Documentation
yexp-0.1.2 has been yanked.

yexp is a small tool for expand yaml files

Examples

a.yaml

- one
- two
- three

b.yaml

items: !import path/to/a.yaml

c.yaml

foo: bar
extend: path/to/b.yaml

yexp /path/to/c.yaml outputs:

foo: bar
items:
- one
- two
- three

Installation

Via cargo

cargo install yexp