sd/Cargo.toml

36 lines
738 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-06-18 22:57:23 -04:00
version = "0.6.5"
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]
regex = "1.3.3"
structopt = "0.3.8"
2019-12-30 16:13:19 -05:00
rayon = "1.3.0"
2019-01-02 22:52:09 -05:00
unescape = "0.1.0"
2019-04-07 01:40:59 -04:00
memmap = "0.7.0"
2019-10-22 18:08:54 -04:00
tempfile = "3.1.0"
2019-12-30 16:13:19 -05:00
thiserror = "1.0.9"
2018-12-23 00:01:35 -05:00
2019-11-17 14:28:43 -05:00
[dev-dependencies]
2019-12-09 13:59:58 -05:00
assert_cmd = "0.12.0"
2020-01-26 16:44:16 -05:00
anyhow = "1.0.26"
2019-11-17 14:28:43 -05:00
2019-06-17 23:22:10 -04:00
[build-dependencies]
structopt = "0.3.8"
2019-06-18 14:04:02 -04:00
man = "0.3.0"
2019-06-17 23:22:10 -04:00
2018-12-23 00:01:35 -05:00
[profile.release]
opt-level = 3
lto = true
debug = false
2019-06-23 17:29:49 -04:00
codegen-units = 1