slice-command 0.1.0

slice is a command-line tool that allows you to slice the contents of a file using syntax similar to Python's slice notation.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "slice-command"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
description = "slice is a command-line tool that allows you to slice the contents of a file using syntax similar to Python's slice notation."
readme = "README.md"
repository = "https://github.com/ChanTsune/slice.git"
categories = ["text-processing", "command-line-utilities"]
keywords = ["text", "utility", "tool"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "4.2.4", features = ["derive"] }

[[bin]]
name = "slice"
path = "src/main.rs"