sd/Cargo.toml

36 lines
740 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"
2020-08-01 02:53:12 +00:00
version = "0.7.6"
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]
2020-08-01 02:51:05 +00:00
regex = "1.3.9"
structopt = "0.3.15"
rayon = "1.3.1"
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-10-22 22:08:54 +00:00
tempfile = "3.1.0"
2020-08-01 02:51:05 +00:00
thiserror = "1.0.20"
2018-12-23 05:01:35 +00:00
2019-11-17 19:28:43 +00:00
[dev-dependencies]
assert_cmd = "1.0.1"
2020-08-01 02:51:05 +00:00
anyhow = "1.0.31"
2019-11-17 19:28:43 +00:00
2019-06-18 03:22:10 +00:00
[build-dependencies]
2020-08-01 02:51:05 +00:00
structopt = "0.3.15"
2019-06-18 18:04:02 +00:00
man = "0.3.0"
2019-06-18 03:22:10 +00:00
2018-12-23 05:01:35 +00:00
[profile.release]
opt-level = 3
lto = true
debug = false
2019-06-23 21:29:49 +00:00
codegen-units = 1