2023-06-04 17:54:10 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
|
|
|
"xtask",
|
|
|
|
]
|
|
|
|
|
2023-10-20 23:06:38 +00:00
|
|
|
[workspace.dependencies.clap]
|
2023-10-21 16:14:04 +00:00
|
|
|
version = "4.4.6"
|
2023-10-20 23:06:38 +00:00
|
|
|
features = ["derive", "deprecated", "wrap_help"]
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
edition = "2021"
|
2023-11-08 02:19:46 +00:00
|
|
|
version = "1.0.0"
|
2023-10-20 23:06:38 +00:00
|
|
|
|
2018-12-23 05:01:35 +00:00
|
|
|
[package]
|
2018-12-23 21:16:02 +00:00
|
|
|
name = "sd"
|
2023-10-02 22:44:47 +00:00
|
|
|
version.workspace = true
|
2023-10-20 23:06:38 +00:00
|
|
|
edition.workspace = true
|
2018-12-23 05:01:35 +00:00
|
|
|
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"]
|
2023-10-20 23:06:38 +00:00
|
|
|
rust-version = "1.70.0"
|
2018-12-23 05:01:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-21 16:14:04 +00:00
|
|
|
regex = "1.10.2"
|
2023-10-02 23:00:24 +00:00
|
|
|
rayon = "1.8.0"
|
2019-01-03 03:52:09 +00:00
|
|
|
unescape = "0.1.0"
|
2023-10-21 16:14:04 +00:00
|
|
|
memmap2 = "0.9.0"
|
2023-08-21 23:18:54 +00:00
|
|
|
tempfile = "3.8.0"
|
2023-10-21 16:14:04 +00:00
|
|
|
thiserror = "1.0.50"
|
2023-10-20 23:06:38 +00:00
|
|
|
clap.workspace = true
|
2018-12-23 05:01:35 +00:00
|
|
|
|
2019-11-17 19:28:43 +00:00
|
|
|
[dev-dependencies]
|
2023-08-22 00:11:09 +00:00
|
|
|
assert_cmd = "2.0.12"
|
2023-08-21 23:18:54 +00:00
|
|
|
anyhow = "1.0.75"
|
2023-10-02 22:44:47 +00:00
|
|
|
clap_mangen = "0.2.14"
|
2023-10-28 20:13:54 +00:00
|
|
|
proptest = "1.3.1"
|
|
|
|
console = "0.15.7"
|
|
|
|
insta = "1.34.0"
|
|
|
|
ansi-to-html = "0.1.3"
|
|
|
|
regex-automata = "0.4.3"
|
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
|