-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (24 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
33 lines (24 loc) · 764 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
27
28
29
30
31
32
33
[package]
name = "iterate-text"
version = "0.0.1"
authors = ["S0AndS0 <strangerthanbland@gmail.com>"]
edition = "2018"
license = "AGPL-3.0"
description = "Library of helper functions and structures for iterating over text files"
homepage = "https://github.com/rust-utilities/iterate-text"
readme = ".github/README.md"
repository = "https://github.com/rust-utilities/iterate-text"
keywords = [ "iterate", "file", "characters", "lines" ]
categories = [ "filesystem", "parsing", "text-processing" ]
exclude = [ "*" ]
include = [
"**/*.rs",
"Cargo.toml",
".github/README.md",
"LICENSE",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
argparse = "0.2.2"
regex = "1"