-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 940 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
35
36
37
38
39
40
41
42
43
[package]
name = "txtpp"
version = "0.2.4"
edition = "2021"
description = "A simple-to-use general purpose preprocessor for text files."
repository = "https://github.com/Pistonite/txtpp"
license = "GPL-3.0"
authors = ["Pistonight <[email protected]>"]
keywords = ["preprocessor", "tool", "template", "macro", "include"]
categories = ["development-tools::build-utils", "template-engine"]
exclude = [
"tests/examples/**/*",
"docs/*",
".github/**/*",
"Taskfile.yml"
]
[dependencies]
which = "^5.0.0"
error-stack = "0.5.0"
termcolor = "1.4.1"
threadpool = "1.8.1"
clap = { version = "^4.4.7", features = ["cargo", "derive"], optional = true }
log = "0.4.22"
env_logger = "0.11.5"
derivative = "2.2.0"
[features]
default = ["cli"]
cli = ["clap"]
[dev-dependencies]
copy_dir = "^0.1.2"
murmur3 = "^0.5.2"
[[bin]]
name = "txtpp"
path = "src/main.rs"
required-features = ["cli"]
[lib]
name = "txtpp"
path = "src/lib.rs"