#data-encoding #jq #yaml #json #hcl #data-transformation #foo-bar

bin+lib dts

A tool to deserialize, transform and serialize data between different encodings

29 releases

new 0.6.0 Apr 10, 2024
0.5.11 Mar 2, 2024
0.5.7 Jul 13, 2023
0.5.3 Feb 23, 2023
0.2.6 Mar 27, 2022

#595 in Encoding

Download history 21/week @ 2024-01-03 13/week @ 2024-02-14 64/week @ 2024-02-21 160/week @ 2024-02-28 27/week @ 2024-03-06 12/week @ 2024-03-13 4/week @ 2024-03-27 91/week @ 2024-04-03

109 downloads per month

MIT and maybe LGPL-3.0-or-later

115KB
2.5K SLoC

dts

Build Status MIT License

A simple tool to deserialize data from an input encoding, transform it and serialize it back into an output encoding.

Uses jq for data transformation and requires rust >= 1.56.0.

Installation

Check out the releases page for prebuilt versions of dts.

Statically-linked binaries are also available: look for archives with musl in the filename.

From crates.io

cargo install dts

From source

Clone the repository and run:

cargo install --locked --path .

Usage

dts [<source>...] [-j <jq-expression>] [-O <sink>...]

For a full list of available flags consult the help:

dts --help

Examples

Convert YAML to TOML:

dts input.yaml -o toml

Load all YAML files from sub directories and merge them into one:

dts . --glob '**/*.yaml' output.yaml

Transform the input data using a jq expression:

dts tests/fixtures/example.json -j '.users | map(select(.age < 30))'

Use jq filter expression from a file:

dts tests/fixtures/example.json -j @my-filter.jq

Read data from stdin:

echo '{"foo": {"bar": "baz"}}' | dts -i json -o yaml

Output colors and themes

dts supports output coloring and syntax highlighting. The coloring behaviour can be controlled via the --color flag or DTS_COLOR environment variable.

If the default theme used for syntax highlighting does not suit you, you can change it via the --theme flag or DTS_THEME environment variable.

Available themes can be listed via:

dts --list-themes

Hint: The color feature can be disabled at compile time if you don't want to have colors at all. See the feature flags section below.

Supported Encodings

Right now dts supports the following encodings:

  • JSON
  • YAML
  • TOML
  • JSON5 (deserialize only)
  • CSV
  • QueryString
  • XML
  • Text
  • Gron
  • HCL (deserialize, serialize only supports HCL attributes)

Feature flags

To build dts without its default features enabled, run:

cargo build --no-default-features --release

The following feature flags are available:

  • color: Enables support for colored output. This feature is enabled by default.

    If you just want to disable colors by default with the option to enable them conditionally, you can also set the NO_COLOR environment variable or set DTS_COLOR=never.

  • jaq: Use jaq-core to process transformation filters instead of shelling out to jq. This feature is enabled by default.

License

The source code of dts is released under the MIT License. See the bundled LICENSE file for details.

Dependencies

~15–29MB
~437K SLoC