sed-rs 1.0.0

A GNU-compatible sed implementation in Rust, powered by sd's regex engine
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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