mirror of
https://github.com/chmln/sd
synced 2024-11-10 05:34:14 +00:00
2d287b9b1c
* refactor!: overall reorganization * fmt: tab to spaces * feat: split out funcs for better error collection * feat: replace Vec-varianted Source with Vec<Source> * docs: more generic description for Error::InvalidPath * fmt: reduce signature verbosity * internal: decolorize to prepare for proper colorization * fmt: tab to spaces (again) * refactor: break up App into main.rs, rm utils.rs * test: only run cli::in_place_following_symlink on Unix, symlinks are privileged on Windows * test: update insta snapshots due to Replacer::new()? in main() * fix: restructure logic, Windows requires closing mmap before write * test: properly mark no-Windows test * test: properly mark temp. ignored test * fix: retain unsafe property of Mmap::map in separate function * chore: `cargo fmt` * chore: Resolve lone warning * test: Test a variety of fs failure cases * refactor: Add back `try_main()` * refactor: Rework error handling * test: Update snapshots * test: fix path inconsistency --------- Co-authored-by: Cosmic Horror <CosmicHorrorDev@pm.me>
51 lines
1 KiB
TOML
51 lines
1 KiB
TOML
[workspace]
|
|
members = [
|
|
".",
|
|
"xtask",
|
|
]
|
|
|
|
[workspace.dependencies.clap]
|
|
version = "4.4.6"
|
|
features = ["derive", "deprecated", "wrap_help"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
version = "1.0.0"
|
|
|
|
[package]
|
|
name = "sd"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors = ["Gregory <gregory.mkv@gmail.com>"]
|
|
description = "An intuitive find & replace CLI"
|
|
readme = "README.md"
|
|
keywords = ["sed", "find", "replace", "regex"]
|
|
license = "MIT"
|
|
homepage = "https://github.com/chmln/sd"
|
|
repository = "https://github.com/chmln/sd.git"
|
|
categories = ["command-line-utilities", "text-processing", "development-tools"]
|
|
rust-version = "1.70.0"
|
|
|
|
[dependencies]
|
|
regex = "1.10.2"
|
|
rayon = "1.8.0"
|
|
unescape = "0.1.0"
|
|
memmap2 = "0.9.0"
|
|
tempfile = "3.8.0"
|
|
thiserror = "1.0.50"
|
|
clap.workspace = true
|
|
|
|
[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"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
strip = true
|