text_analysis 0.2.0

Analyze text stored as *.txt in provided file or directory. Doesn't read files in subdirectories. Counting all words and then searching for every unique word in the vicinity (+-5 words). Stores results in file [date/time]results_word_analysis.txt in given directory.
Documentation
[package]

name = "text_analysis"

version = "0.2.0"

authors = ["LazyEmpiricist <35100899+LazyEmpiricist@users.noreply.github.com>"]

edition = "2018"

description = "Analyze text stored as *.txt in provided file or directory. Doesn't read files in subdirectories. Counting all words and then searching for every unique word in the vicinity (+-5 words). Stores results in file [date/time]results_word_analysis.txt in given directory."

readme = "README.md"

homepage = "https://docs.rs/text_analysis/"

documentation = "https://docs.rs/text_analysis/"

repository = "https://github.com/LazyEmpiricist/text_analysis"

keywords = ["statistics", "word-analysis", "parsing", "text-processing", "science"]

categories = ["command-line-utilities", "parsing", "text-processing", "science"]

license = "MIT"



[lib]

name = "text_analysis"

path = "src/lib.rs"



[[bin]]

name = "text_analysis"

path = "src/main.rs"



# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html



[dependencies]

chrono = "0.4.19"