rust-sd 1.0.0-2 source package in Ubuntu

Changelog

rust-sd (1.0.0-2) unstable; urgency=medium

  * Relax dependency on memmap2 to allow build

 -- Blair Noctis <email address hidden>  Sat, 25 Nov 2023 15:09:34 +0000

Upload details

Uploaded by:
Rust Maintainers
Uploaded to:
Sid
Original maintainer:
Rust Maintainers
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc

Downloads

File Size SHA-256 Checksum
rust-sd_1.0.0-2.dsc 1.9 KiB 93ac3bf761b375ba11ecf7336d17d218404d4d0de7de911b28546a883b66a137
rust-sd_1.0.0.orig.tar.gz 28.7 KiB 70613c41881ca1e5b69e6bb110f2ac499739c03a151b00e41e16090974b826a8
rust-sd_1.0.0-2.debian.tar.xz 3.4 KiB 9cb37e4b229ce522688dfaaa08ff21460e22de784ada06d613f8e5f7f17d0011

Available diffs

No changes file available.

Binary packages built by this source

sd: intuitive find and replace CLI

 sd uses Python and JavaScript style regex syntax, without the quirks
 of sed and awk. While sed can do many things, sd focuses on doing
 one thing and doing it well, has common-sense defualts and a focus
 on daily use. It's also faster.
 .
  - Find and replace expressions are separate, unlike sed:
   sd before after
   sed s/before/after/g
  - Modify files in-place:
   sd before after file.txt
   sed -i'' 's/before/after/g' file.txt
  - String-literal mode
  - Named or unnamed catch groups