mirror of
https://github.com/chmln/sd
synced 2024-11-22 11:13:04 +00:00
37 lines
782 B
TOML
37 lines
782 B
TOML
[package]
|
|
name = "sd"
|
|
version = "0.7.6"
|
|
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.4.3"
|
|
structopt = "0.3.21"
|
|
rayon = "1.5.0"
|
|
unescape = "0.1.0"
|
|
memmap = "0.7.0"
|
|
tempfile = "3.2.0"
|
|
thiserror = "1.0.24"
|
|
globwalk = "0.8.1"
|
|
atty = "0.2.14"
|
|
ignore = "0.4.17"
|
|
ansi_term = "0.12.1"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "1.0.3"
|
|
anyhow = "1.0.38"
|
|
|
|
[build-dependencies]
|
|
structopt = "0.3.21"
|
|
man = "0.3.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|