-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 958 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
[package]
name = "rust-wc"
description = "A GNU/wc clone written in rust, which is faster when reading a large of big files"
version = "0.3.5"
authors = ["jedsek <[email protected]>"]
edition = "2021"
readme = "README.md"
documentation = "https://github.com/jedsek/rust-wc"
homepage = "https://github.com/jedsek/rust-wc"
repository = "https://github.com/jedsek/rust-wc"
keywords = ["wc", "command-line", "rust-wc", "rwc"]
categories = ["command-line-utilities"]
license = "MIT"
[[bin]]
name = "rwc"
path = "src/main.rs"
# Reduce the size of binary file
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
strip = true
[dependencies]
clap = {version = "4.0.29", features = ["derive"]}
unicode-width = "0.1.10"
indicatif = "0.17.2"
prettytable-rs = "0.9.0"
rayon = "1.6.1"
stripmargin = "0.1.1"
[build-dependencies]
clap = {version = "4.0.29", features = ["derive"]}
clap_complete = "4.0.6"
stripmargin = "0.1.1"