summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5eaf9f4ca8952ba2c53901e1627f99e55e3c64b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "toml-patch"
version = "0.1.0"
description = "A command-line tool to apply updates from a JSON file to a TOML file, while preserving comments."
repository = "https://git.push-f.com/toml-patch/"
authors = ["Martin Fischer <martin@push-f.com>"]
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["cli", "toml", "json"]
edition = "2021"

[dependencies]
anyhow = "1.0.93"
argh = "0.1.12"
serde_json = "1.0.132"
toml_edit = "0.22.22"

[dev-dependencies]
indoc = "2.0.5"