utrans 0.1.0

A command line utility to convert paths (say realpath, url, etc) and to print/copy them to clipboard
[package]
name = "utrans"
version = "0.1.0"
edition = "2021"
authors = ["Aniruddh Radhakrishnan<aniruddh.iitb.92@gmail.com>"]
description = "A command line utility to convert paths (say realpath, url, etc) and to print/copy them to clipboard"
repository = "https://www.github.com/loggerheads-with-binary/utrans-rs"
license = "MIT"
readme = "README.md"

[[bin]]
name = "utrans"
path = "src/builds/utrans.rs"

[[bin]]
name = "utransw"
path = "src/builds/utransw.rs"

[[bin]]
name = "ucopy"
path = "src/builds/utrans.rs"
required-features = ["copy"]

[[bin]]
name = "ucopyw"
path = "src/builds/utransw.rs"
required-features = ["copy"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.2.1", features = ["color", "derive", "help", "suggestions", "usage", "wrap_help", "error-context"] }
clipboard = "0.5.0"
lazy_static = "1.4.0"
path-absolutize = "3.0.14"
realpath-rs = "0.2.0"
regex = "1.7.3"
serde_json = "1.0.95"
url = "2.3.1"

[features]
chae = []
copy = []
err-notify = []