2019-10-05 07:30:30 -06:00
|
|
|
[package]
|
2020-05-27 20:46:41 -05:00
|
|
|
name = "typos-dict-codegen"
|
2021-05-21 20:41:02 -05:00
|
|
|
version = "1.3.0"
|
2019-10-05 07:30:30 -06:00
|
|
|
authors = ["Ed Page <eopage@gmail.com>"]
|
|
|
|
description = "Source Code Spelling Correction"
|
2019-10-25 09:58:24 -06:00
|
|
|
repository = "https://github.com/crate-ci/typos"
|
2019-10-28 08:19:47 -06:00
|
|
|
readme = "../../../README.md"
|
2019-10-05 07:30:30 -06:00
|
|
|
categories = ["text-processing"]
|
|
|
|
license = "MIT"
|
2022-06-01 06:53:10 -05:00
|
|
|
edition = "2021"
|
2022-06-01 06:50:26 -05:00
|
|
|
rust-version = "1.59.0" # MSRV
|
2019-10-05 07:30:30 -06:00
|
|
|
publish = false
|
|
|
|
|
2021-06-29 15:39:28 -05:00
|
|
|
[package.metadata.release]
|
2021-11-16 07:44:08 -06:00
|
|
|
release = false
|
2021-06-29 15:39:28 -05:00
|
|
|
|
2019-10-05 07:30:30 -06:00
|
|
|
[dependencies]
|
2020-12-01 08:19:21 +00:00
|
|
|
csv = "1.1"
|
2021-05-15 19:06:04 -05:00
|
|
|
itertools = "0.10"
|
2019-10-25 10:24:25 -06:00
|
|
|
unicase = "2.5"
|
2022-02-01 10:34:12 -06:00
|
|
|
codegenrs = "2.0"
|
2022-07-01 07:04:47 +00:00
|
|
|
clap = { version = "3.2", features = ["derive"] }
|
2021-11-16 07:46:33 -06:00
|
|
|
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }
|