From b6ebc5f88ffe9fb442238f160879ad47dd713d11 Mon Sep 17 00:00:00 2001 From: name Date: Fri, 11 Aug 2023 05:09:24 +0000 Subject: 2023-08-10 --- rust/wolfree_sed_in_place/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 rust/wolfree_sed_in_place/Cargo.toml (limited to 'rust/wolfree_sed_in_place/Cargo.toml') diff --git a/rust/wolfree_sed_in_place/Cargo.toml b/rust/wolfree_sed_in_place/Cargo.toml new file mode 100644 index 0000000..ab2b32f --- /dev/null +++ b/rust/wolfree_sed_in_place/Cargo.toml @@ -0,0 +1,22 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# This file is part of Wolfree. +# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +[package] +name = "wolfree_sed_in_place" +version = "23.7.31" +edition = "2021" + +authors = ["See the commit history of the Git repositories: "] +description = "This Rust program performs in-place search and replaces operations on all files within specified directories. It uses regular expressions to find occurrences of a given pattern in each file's contents and replaces them with the replacement text." +license = "AGPL-3.0-or-later" +repository = "https://try.gitea.io/wolfree" +readme = "README.md" +keywords = ["rust", "search", "replace", "regular expressions", "regex", "file", "in-place"] +categories = ["command-line-utilities", "development-tools::build-utils", "web-programming", "template-engine"] + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +regex = "1" +walkdir = "2" -- cgit v1.2.3