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