sd/Cargo.toml

23 lines
533 B
TOML
Raw Normal View History

2018-12-23 05:01:35 +00:00
[package]
2018-12-23 21:16:02 +00:00
name = "sd"
2018-12-26 20:34:14 +00:00
version = "0.2.0"
2018-12-23 05:01:35 +00:00
edition = "2018"
authors = ["Gregory <gregory.mkv@gmail.com>"]
description = "An intuitive find & replace CLI"
2018-12-24 00:59:41 +00:00
readme = "README.md"
2018-12-23 05:01:35 +00:00
keywords = ["sed", "find", "replace", "regex"]
license = "MIT"
2018-12-24 00:59:41 +00:00
homepage = "https://github.com/chmln/sd"
repository = "https://github.com/chmln/sd.git"
2018-12-23 05:01:35 +00:00
categories = ["command-line-utilities", "text-processing", "development-tools"]
[dependencies]
regex = "1.1.0"
2018-12-23 21:16:02 +00:00
unescape = "0.1.0"
structopt = "0.2.14"
2018-12-23 05:01:35 +00:00
[profile.release]
opt-level = 3
lto = true
debug = false