sd/Cargo.toml

26 lines
585 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"
2019-02-22 22:48:44 +00:00
version = "0.5.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]
2019-06-16 06:48:18 +00:00
regex = "1.1.7"
structopt = "0.2.16"
rayon = "1.1.0"
2019-01-03 03:52:09 +00:00
unescape = "0.1.0"
2019-04-07 05:40:59 +00:00
memmap = "0.7.0"
2019-05-27 03:28:57 +00:00
tempfile = "3.0.8"
2018-12-23 05:01:35 +00:00
[profile.release]
opt-level = 3
lto = true
debug = false