-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 878 Bytes
/
Cargo.toml
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
[package]
name = "surgery"
description = "cut-off parts of text streams"
version = "0.1.0"
authors = ["Vince van Oosten <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "surgery"
path = "src/lib.rs"
[[bin]]
name = "amp"
description = "Skip the last N lines of files/stdin (inverse of tail)"
path = "src/bin/amp.rs"
[[bin]]
name = "dcap"
description = "Skip the first N lines of files/stdin (inverse of head)"
path = "src/bin/dcap.rs"
[[bin]]
name = "head"
description = "Print the first N lines of files/stdin (Simple implementation of head from coreutils)"
path = "src/bin/head.rs"
[[bin]]
name = "tail"
description = "Print the last N lines of files/stdin (Simple implementation of tail from coreutils)"
path = "src/bin/tail.rs"
[dependencies]
clap = "2.33.0"