sd/Cargo.toml

27 lines
608 B
TOML
Raw Normal View History

2018-12-23 00:01:35 -05:00
[package]
2018-12-23 16:16:02 -05:00
name = "sd"
2019-02-22 17:48:44 -05:00
version = "0.5.0"
2018-12-23 00:01:35 -05:00
edition = "2018"
authors = ["Gregory <gregory.mkv@gmail.com>"]
description = "An intuitive find & replace CLI"
2018-12-23 19:59:41 -05:00
readme = "README.md"
2018-12-23 00:01:35 -05:00
keywords = ["sed", "find", "replace", "regex"]
license = "MIT"
2018-12-23 19:59:41 -05:00
homepage = "https://github.com/chmln/sd"
repository = "https://github.com/chmln/sd.git"
2018-12-23 00:01:35 -05:00
categories = ["command-line-utilities", "text-processing", "development-tools"]
[dependencies]
2019-04-07 01:40:59 -04:00
regex = "1.1.5"
structopt = "0.2.15"
2018-12-29 18:08:24 -05:00
rayon = "1.0.3"
2019-04-07 01:40:59 -04:00
regex-syntax = "0.6.6"
2019-01-02 22:52:09 -05:00
unescape = "0.1.0"
2019-04-07 01:40:59 -04:00
memmap = "0.7.0"
tempfile = "3.0.7"
2018-12-23 00:01:35 -05:00
[profile.release]
opt-level = 3
lto = true
debug = false