sd/Cargo.toml

52 lines
1 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = [
".",
"xtask",
]
[workspace.dependencies.clap]
version = "4.4.6"
features = ["derive", "deprecated", "wrap_help"]
[workspace.package]
edition = "2021"
version = "1.0.0"
2018-12-23 05:01:35 +00:00
[package]
2018-12-23 21:16:02 +00:00
name = "sd"
version.workspace = true
edition.workspace = true
2018-12-23 05:01:35 +00:00
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"]
rust-version = "1.70.0"
2018-12-23 05:01:35 +00:00
[dependencies]
regex = "1.10.2"
rayon = "1.8.0"
2019-01-03 03:52:09 +00:00
unescape = "0.1.0"
memmap2 = "0.9.0"
tempfile = "3.8.0"
thiserror = "1.0.50"
clap.workspace = true
2018-12-23 05:01:35 +00:00
2019-11-17 19:28:43 +00:00
[dev-dependencies]
assert_cmd = "2.0.12"
anyhow = "1.0.75"
clap_mangen = "0.2.14"
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
strip = true