typos/crates/wikipedia-dict/Cargo.toml

31 lines
684 B
TOML
Raw Normal View History

2019-10-28 13:39:59 -06:00
[package]
name = "wikipedia-dict"
2021-05-21 20:41:02 -05:00
version = "0.4.0"
2019-10-28 13:39:59 -06:00
description = "Source Code Spelling Correction"
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
publish = false
2022-11-01 14:20:38 -05:00
license = "CC-BY-SA-3.0"
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
include.workspace = true
2019-10-28 13:39:59 -06:00
[package.metadata.release]
2021-11-16 07:44:08 -06:00
release = false
2019-10-28 13:39:59 -06:00
[dependencies]
2023-09-01 00:57:02 +00:00
unicase = "2.7"
2021-11-16 07:46:33 -06:00
dictgen = { version = "^0.2", path = "../dictgen" }
2022-08-01 14:45:58 -05:00
[dev-dependencies]
2023-09-01 00:57:02 +00:00
unicase = "2.7"
itertools = "0.13"
2023-10-16 12:58:00 -05:00
codegenrs = "3.0"
2022-08-01 14:45:58 -05:00
dictgen = { version = "^0.2", path = "../dictgen", features = ["codegen"] }
2024-05-27 22:11:47 -05:00
snapbox = "0.6.5"
2024-04-26 21:14:01 -05:00
[lints]
workspace = true