1 unstable release

0.1.0 Jun 11, 2019

#8 in #substitute

Download history 17/week @ 2024-11-13 20/week @ 2024-11-20 18/week @ 2024-11-27 23/week @ 2024-12-04 37/week @ 2024-12-11 16/week @ 2024-12-18 5/week @ 2024-12-25 7/week @ 2025-01-01 13/week @ 2025-01-08 8/week @ 2025-01-15 10/week @ 2025-01-22 10/week @ 2025-01-29 16/week @ 2025-02-05 35/week @ 2025-02-12 18/week @ 2025-02-19 35/week @ 2025-02-26

105 downloads per month

MIT/Apache

8KB
122 lines

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.

Dependencies

~7MB
~127K SLoC