-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 820 Bytes
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
[package]
name = "shell-string"
version = "0.4.2"
description = "Obvious CLI for basic string manipulation"
license = "Unlicense OR MIT"
# homepage = "https://github.com/nilsmartel/string"
repository = "https://github.com/nilsmartel/string"
readme = "README.md"
keywords = ["shell", "cli", "string", "template", "templating"]
categories = [
"command-line-utilities",
"text-editors"
]
authors = ["Nils Martel <nilsmartel@yahoo.de>"]
edition = "2018"
[[bin]]
path = "src/main.rs"
name = "string"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.14" # Parse command line argument by defining a struct.
itertools = "0.9.0" # Extra iterator adaptors, iterator methods, free functions, and macros.
nom = "7.1.3"