sd/Cargo.toml

32 lines
676 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"
2019-06-19 02:57:23 +00:00
version = "0.6.5"
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]
2019-10-22 22:08:54 +00:00
regex = "1.3.1"
2019-11-17 17:33:08 +00:00
structopt = "0.3.4"
2019-10-22 22:08:54 +00:00
rayon = "1.2.0"
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"
2019-11-17 17:33:08 +00:00
anyhow = "1.0.20"
2018-12-23 05:01:35 +00:00
2019-06-18 03:22:10 +00:00
[build-dependencies]
2019-11-17 17:33:08 +00:00
structopt = "0.3.4"
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