summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e885e750a74e9eacd6df7a38a0889a7dbe9e5e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "sd"
version = "0.4.3"
edition = "2018"
authors = ["Gregory <gregory.mkv@gmail.com>"]
description = "An intuitive find & replace CLI"
readme = "README.md"
keywords = ["sed", "find", "replace", "regex"]
license = "MIT"
homepage = "https://github.com/chmln/sd"
repository = "https://github.com/chmln/sd.git"
categories = ["command-line-utilities", "text-processing", "development-tools"]

[dependencies]
regex = "1.1.0"
structopt = "0.2.14"
atomic-write = "0.2.0"
rayon = "1.0.3"
regex-syntax = "0.6.4"
unescape = "0.1.0"

[profile.release]
opt-level = 3
lto = true
debug = false