1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[package]
name = "edit"
description = "Open a file in the default text editor"
authors = ["Milkey Mouse <milkeymouse@meme.institute>"]
repository = "https://github.com/milkey-mouse/edit"
keywords = ["editor", "edit", "editing", "cli"]
categories = ["command-line-interface", "config", "text-processing", "text-editors"]
license = "CC0-1.0"
version = "0.1.5"
edition = "2018"
[lib]
name = "edit"
[features]
default = ["better-path"]
better-path = ["which"]
quoted-env = ["shell-words"]
[dependencies]
shell-words = { version = "1.1.0", optional = true }
tempfile = "3.1.0"
which = { version = "4.0", default-features = false, optional = true }
|