[package]
edition = "2021"
name = "vipe-rs"
version = "1.0.0"
authors = ["@RandyMcMillan <randy.lee.mcmillan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Edit piped input in your editor"
homepage = "https://github.com/randymcmillan/vipe-rs"
readme = "README.md"
keywords = [
"editor",
"pipe",
"stdin",
"temporary",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/randymcmillan/vipe-rs"
[lib]
name = "vipe_rs"
path = "src/lib.rs"
[[bin]]
name = "vipe"
path = "src/main.rs"
[dependencies.atty]
version = "0.2.14"
[dependencies.rand]
version = "0.9.1"
[dependencies.rand_core]
version = "0.9.3"
[dependencies.tempfile]
version = "3.20.0"
[profile.dist]
lto = "thin"
inherits = "release"