typos/crates/wikipedia-dict/Cargo.toml

28 lines
613 B
TOML
Raw Normal View History

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"
2021-11-08 11:11:02 -05:00
authors = ["Ed Page <eopage@gmail.com>"]
license = "CC-BY-SA-3.0"
2019-10-28 15:39:59 -04:00
repository = "https://github.com/crate-ci/typos"
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
2022-06-01 07:53:10 -04:00
edition = "2021"
2022-06-01 07:50:26 -04:00
rust-version = "1.59.0" # MSRV
publish = false
2021-11-08 11:11:02 -05:00
include = [
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"examples/**/*"
]
2019-10-28 15:39:59 -04:00
[package.metadata.release]
2021-11-16 08:44:08 -05:00
release = false
2019-10-28 15:39:59 -04:00
[dependencies]
unicase = "2.5"
2021-11-16 08:46:33 -05:00
dictgen = { version = "^0.2", path = "../dictgen" }