24 lines
659 B
TOML
24 lines
659 B
TOML
[package]
|
|
name = "text-correction"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
description = "Small CLI tool that corrects a given input file based on a word list given as input."
|
|
authors = ["nihil carcosa <nihil@valhrafnaz.gay>"]
|
|
homepage = "https://valhrafnaz.gay"
|
|
repository = "https://git.valhrafnaz.gay/valhrafnaz/text-correction"
|
|
categories = ["command-line-utilities"]
|
|
keywords = ["text-processing"]
|
|
publish = ["gitea"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.41", features = ["derive"] }
|
|
fuzzt = "0.3.1"
|
|
levenshtein = "1.0.5"
|
|
log = "0.4.27"
|
|
num_cpus = "1.17.0"
|
|
rayon = "1.10.0"
|
|
regex = "1.11.1"
|
|
spinners = "4.1.1"
|