File: control

package info (click to toggle)
rust-sd 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 292 kB
  • sloc: sh: 51; makefile: 8
file content (59 lines) | stat: -rw-r--r-- 1,913 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Source: rust-sd
Section: utils
Priority: optional
Build-Depends: debhelper (>= 12),
 dh-cargo (>= 25),
 cargo:native,
 rustc:native (>= 1.70.0),
 libstd-rust-dev,
 librust-ansi-term-0.12+default-dev (>= 0.12.1-~~),
 librust-clap-4+default-dev (>= 4.4.6-~~),
 librust-clap-4+deprecated-dev (>= 4.4.6-~~),
 librust-clap-4+derive-dev (>= 4.4.6-~~),
 librust-clap-4+wrap-help-dev (>= 4.4.6-~~),
 librust-is-terminal-0.4+default-dev (>= 0.4.9-~~),
 librust-memmap2-0+default-dev (>= 0.5-~~),
 librust-rayon-1+default-dev (>= 1.7-~~),
 librust-regex-1+default-dev (>= 1.10.2-~~),
 librust-tempfile-3+default-dev (>= 3.8.0-~~),
 librust-thiserror+default-dev (>= 1.0.49-~~),
 librust-unescape-0.1+default-dev
Maintainer: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
Uploaders:
 Blair Noctis <n@sail.ng>
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/sd]
Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/sd
Homepage: https://github.com/chmln/sd
X-Cargo-Crate: sd
Rules-Requires-Root: no

Package: sd
Architecture: any
Multi-Arch: allowed
Depends:
 ${misc:Depends},
 ${shlibs:Depends},
 ${cargo:Depends}
Recommends:
 ${cargo:Recommends}
Suggests:
 ${cargo:Suggests}
Provides:
 ${cargo:Provides}
Built-Using: ${cargo:Built-Using}
XB-X-Cargo-Built-Using: ${cargo:X-Cargo-Built-Using}
Description: 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 defaults 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