sd/Cargo.toml

39 lines
866 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]
2021-02-11 02:49:38 +00:00
regex = "1.4.3"
rayon = "1.5.0"
2019-01-03 03:52:09 +00:00
unescape = "0.1.0"
2023-05-09 01:56:51 +00:00
memmap2 = "0.5.10"
2021-02-11 02:49:38 +00:00
tempfile = "3.2.0"
2021-03-01 04:46:49 +00:00
thiserror = "1.0.24"
2021-02-11 02:49:38 +00:00
globwalk = "0.8.1"
ignore = "0.4.17"
ansi_term = "0.12.1"
2023-05-12 03:40:47 +00:00
is-terminal = "0.4.7"
clap = { version = "4.2.7", features = ["derive", "deprecated", "wrap_help"] }
2018-12-23 05:01:35 +00:00
2019-11-17 19:28:43 +00:00
[dev-dependencies]
2021-02-11 02:49:38 +00:00
assert_cmd = "1.0.3"
anyhow = "1.0.38"
2019-11-17 19:28:43 +00:00
2019-06-18 03:22:10 +00:00
[build-dependencies]
clap = "4.2.7"
clap_complete = "4.2.2"
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