-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (30 loc) · 1.03 KB
/
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
[package]
name = "project_analyzer"
version = "2.1.0"
edition = "2021"
description = "Fast Rust binary that counts line numbers of a codebase."
license = "MIT"
readme = "README.md"
# documentation = "https://docs.rs/rust-persian-tools" # if not set docs.rs will generate one and put it in place
homepage = "https://crates.io/crates/project_analyzer"
repository = "https://github.com/ali77gh/ProjectAnalyzer"
categories = ["command-line-utilities", "development-tools"]
keywords = ["counter", "codebase", "source", "analyzer","project"]
include = ["src/**/*.rs", "Cargo.toml", "LICENSE", "README.md"]
[dependencies]
clap = { version = "4.5.1", features = ["derive"] }
piechart = "1.0.0"
webbrowser = "0.8.11"
tokio = { version = "1", features = ["full"] }
notify = "6.1.1"
clearscreen = "2.0.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
lazy_static = "1.4.0"
rust-embed={version = "8.3.0", features = ["include-exclude"]}
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
overflow-checks=false
panic = "abort"