2024-03-05 17:26:15 +00:00
|
|
|
[package]
|
2024-03-06 16:37:25 +00:00
|
|
|
name = "word_freq_analyzer"
|
2024-03-05 17:26:15 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-11 08:25:32 +00:00
|
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
2024-03-06 16:37:25 +00:00
|
|
|
dashmap = { version = "5.5.3", features = ["serde"] }
|
2024-03-05 17:26:15 +00:00
|
|
|
futures = "0.3.30"
|
|
|
|
indicatif = "0.17.8"
|
2024-06-11 08:25:32 +00:00
|
|
|
jieba-rs = { version = "0.7.0", default-features = false }
|
2024-06-03 07:35:23 +00:00
|
|
|
once_cell = "1.19.0"
|
|
|
|
serde_json = "1.0.117"
|
2024-06-11 08:25:32 +00:00
|
|
|
tokio = { version = "1.38.0", features = [
|
|
|
|
"rt",
|
|
|
|
"rt-multi-thread",
|
|
|
|
"io-util",
|
|
|
|
"time",
|
|
|
|
"macros",
|
|
|
|
"sync",
|
|
|
|
"fs",
|
|
|
|
"parking_lot",
|
|
|
|
] }
|
2024-03-05 17:26:15 +00:00
|
|
|
tracing = "0.1.40"
|
2024-03-07 08:42:58 +00:00
|
|
|
tracing-subscriber = "0.3.18"
|
2024-03-05 17:26:15 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
|
|
|
codegen-units = 1
|
|
|
|
debug = true
|
|
|
|
split-debuginfo = "packed"
|
|
|
|
|
|
|
|
[build-dependencies]
|