[package]
edition = "2024"
rust-version = "1.85"
name = "sed-rs"
version = "1.0.0"
authors = ["Pegasus Heavy Industries LLC <pegasusheavyindustries@gmail.com>"]
build = false
exclude = [
".github/",
".gitignore",
"tests/",
".cursor/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A GNU-compatible sed implementation in Rust, powered by sd's regex engine"
homepage = "https://github.com/pegasusheavy/sed-rs"
documentation = "https://docs.rs/sed-rs"
readme = "README.md"
keywords = [
"sed",
"text",
"replace",
"regex",
"stream-editor",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pegasusheavy/sed-rs"
[lib]
name = "sed_rs"
path = "src/lib.rs"
[[bin]]
name = "sed"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.regex]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[profile.release]
opt-level = 3
lto = true
strip = true