[package]
edition = "2021"
name = "pathmut"
version = "0.8.0"
authors = ["rutrum <dave@rutrum.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line utility for manipulating path strings"
readme = "README.md"
keywords = [
"path",
"extension",
"file",
]
categories = [
"text-processing",
"command-line-utilities",
]
license = "GPL-3.0"
repository = "https://github.com/rutrum/pathmut"
[lib]
name = "pathmut"
path = "src/lib.rs"
[[bin]]
name = "pathmut"
path = "src/main.rs"
[dependencies.clap]
version = "^4.0"
features = [
"cargo",
"color",
"wrap_help",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.typed-path]
version = "0.10.0"
[dependencies.url]
version = "2.5.8"
[dev-dependencies.assert_cmd]
version = "2.0.4"
[dev-dependencies.predicates]
version = "2.1.1"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.rstest_reuse]
version = "0.7"