typos/crates/typos-dict/codegen/Cargo.toml

24 lines
592 B
TOML
Raw Normal View History

[package]
name = "typos-dict-codegen"
2021-05-21 20:41:02 -05:00
version = "1.3.0"
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"
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
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
[dependencies]
csv = "1.1"
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"
clap = { version = "3.2", features = ["derive"] }
2021-11-16 07:46:33 -06:00
dictgen = { version = "^0.2", path = "../../dictgen", features = ["codegen"] }