2023-06-04 17:54:10 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
|
|
|
"xtask",
|
|
|
|
]
|
|
|
|
|
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>"]
|
2018-12-25 23:32:44 +00:00
|
|
|
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"
|
2021-05-02 23:03:48 +00:00
|
|
|
ignore = "0.4.17"
|
|
|
|
ansi_term = "0.12.1"
|
2023-05-12 03:40:47 +00:00
|
|
|
is-terminal = "0.4.7"
|
2023-05-12 04:43:47 +00:00
|
|
|
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
|
|
|
|
2018-12-23 05:01:35 +00:00
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = true
|
2023-05-17 18:54:28 +00:00
|
|
|
strip = true
|