subtoml

Crates.iosubtoml
lib.rssubtoml
version0.1.0
sourcesrc
created_at2019-06-11 10:05:31.142453
updated_at2019-06-11 10:05:31.142453
descriptionSubstitute parts of TOML file
homepagehttps://github.com/pbzweihander/subtoml
repositoryhttps://github.com/pbzweihander/subtoml
max_upload_size
id140373
size19,629
Kangwook Lee (이강욱) (pbzweihander)

documentation

README

subtoml-rs

crates.io badge

subtoml-rs is a CLI utility that substitutes parts of TOML file, inspired by dahlia/subtoml, but written in Rust.

Usage

subtoml 0.1.0
pbzweihander <pbzweihander@gmail.com>
Substitute parts of TOML file

USAGE:
    subtoml [OPTIONS] [--] [KEY=VALUE]...

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -d, --delete <KEY>...       Keys to delete
    -i, --input-file <FILE>     Toml file to read. default: stdin
    -o, --output-file <FILE>    Toml file to write. default: stdout

ARGS:
    <KEY=VALUE>...    Entries to add or modify. Must be form of KEY[.SUBKEY...]=VALUE

Example

$ subtoml -i Cargo.toml \
    -d package \
    -d dependencies.structopt \
    dependencies.toml_edit=foo

[dependencies]
toml_edit = "foo"


subtoml-rs is distributed under the terms of both MIT License and Apache License 2.0. See COPYRIGHT for detail.

Commit count: 0

cargo fmt