fix: add crate.io integration

This commit is contained in:
Volodymyr Yavdoshenko
2026-01-10 22:07:18 +02:00
parent be09c6a4a5
commit 26c76a5cec
3 changed files with 20 additions and 2 deletions
+5
View File
@@ -144,6 +144,11 @@ Pre-built binaries are available on the [Releases](https://github.com/vyavdoshen
### Install
**From crates.io:**
```bash
cargo install red-sed
```
**Linux:**
```bash
curl -LO https://github.com/vyavdoshenko/red/releases/latest/download/red-linux-x86_64-musl.tar.gz
+1 -1
View File
@@ -469,7 +469,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
[[package]]
name = "red"
name = "red-sed"
version = "1.0.0"
dependencies = [
"anyhow",
+14 -1
View File
@@ -1,7 +1,20 @@
[package]
name = "red"
name = "red-sed"
version = "1.0.0"
edition = "2021"
description = "An experimental drop-in replacement for GNU sed, written in Rust"
license = "MIT"
repository = "https://github.com/vyavdoshenko/red"
keywords = ["sed", "text-processing", "cli", "unix"]
categories = ["command-line-utilities", "text-processing"]
[lib]
name = "red"
path = "src/lib.rs"
[[bin]]
name = "red"
path = "src/main.rs"
[features]
default = []