yexp

Crates.ioyexp
lib.rsyexp
version0.2.2
sourcesrc
created_at2024-04-25 07:30:41.132864
updated_at2024-05-08 10:14:44.343427
descriptionyexp is a small tool for expand yaml files
homepage
repositoryhttps://github.com/fixcik/yexp
max_upload_size
id1219861
size53,836
(fixcik)

documentation

README

yexp is a small tool for expand yaml files

Examples

a.yaml

- one
- two
- three

b.yaml

items: !include path/to/a.yaml

c.yaml

foo: bar
extend: # <- can be string or sequence of strings
  - path/to/b.yaml

yexp /path/to/c.yaml outputs:

foo: bar
items:
  - one
  - two
  - three

Installation

Prebuilt Binaries

Download the latest releases from the GitHub release page.

Via cargo

cargo install yexp

Via homebrew

brew tap fixcik/tap
brew install yexp
Commit count: 12

cargo fmt