-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (33 loc) · 922 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
[package]
name = "ncount"
version = "0.7.2"
edition = "2021"
authors = ["J/A <[email protected]>"]
license = "Unlicense"
keywords = ["novel", "word-count", "text"]
readme = "readme.md"
homepage = "https://github.com/archer884/ncount"
repository = "https://github.com/archer884/ncount"
categories = ["command-line-utilities", "text-processing"]
description = """
A word count tool intended to derive useful stats from markdown.
"""
[dependencies]
clap = { version = "4.5.20", features = ["derive", "wrap_help", "color"] }
compact_str = "0.8.0"
either = "1.13.0"
globwalk = "0.9.1"
libsw = "3.3.1"
prettytable-rs = "0.10.0"
regex = "1.11.0"
thiserror = "1.0.65"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
unicode-segmentation = "1.12.0"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[profile.dev]
debug = 0
# debug = true # used for flamegraph generation