summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 9849a71756508cdb1b72b4be214c60345696a73e (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
26
27
28
29
30
31
32
33
34
35
[package]
name = "sd"
version = "0.7.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.3.6"
structopt = "0.3.12"
rayon = "1.3.0"
unescape = "0.1.0"
memmap = "0.7.0"
tempfile = "3.1.0"
thiserror = "1.0.13"

[dev-dependencies]
assert_cmd = "1.0.0"
anyhow = "1.0.27"

[build-dependencies]
structopt = "0.3.12"
man = "0.3.0"

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