From 9f38fa9e1aac1b19d086fbdc31c25d89c4981362 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 10 Nov 2024 10:53:38 +0100 Subject: initial commit --- Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5eaf9f4 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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 "] +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" -- cgit v1.2.3