mirror of
https://github.com/crate-ci/typos.git
synced 2025-01-11 09:11:39 -05:00
20ab9e2749
Some checks are pending
Security audit / security_audit (push) Waiting to run
Security audit / cargo_deny (bans licenses sources) (push) Waiting to run
CI / CI (push) Blocked by required conditions
CI / Test (push) Waiting to run
CI / Check MSRV (push) Waiting to run
CI / lockfile (push) Waiting to run
CI / Docs (push) Waiting to run
CI / rustfmt (push) Waiting to run
CI / clippy (push) Waiting to run
CI / Coverage (push) Waiting to run
/ linux (aarch64) (push) Waiting to run
/ linux (x86) (push) Waiting to run
/ linux (x86_64) (push) Waiting to run
/ musllinux (aarch64) (push) Waiting to run
/ musllinux (x86_64) (push) Waiting to run
/ windows (x64) (push) Waiting to run
/ windows (x86) (push) Waiting to run
/ macos (aarch64) (push) Waiting to run
/ macos (x86_64) (push) Waiting to run
/ sdist (push) Waiting to run
/ Release (push) Blocked by required conditions
pre-commit / pre-commit (push) Waiting to run
29 lines
735 B
TOML
29 lines
735 B
TOML
[package]
|
|
name = "codespell-dict"
|
|
version = "0.5.0"
|
|
description = "Source Code Spelling Correction"
|
|
readme = "README.md"
|
|
categories = ["development-tools", "text-processing"]
|
|
keywords = ["development", "spelling"]
|
|
publish = false
|
|
license = "CC-BY-SA-3.0"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
include.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
|
|
|
|
[dependencies]
|
|
dictgen = { version = "^0.3", path = "../dictgen" }
|
|
|
|
[dev-dependencies]
|
|
codegenrs = "3.0"
|
|
dictgen = { version = "^0.3", path = "../dictgen", features = ["codegen"] }
|
|
snapbox = "0.6.5"
|
|
typos = { path = "../typos" }
|
|
|
|
[lints]
|
|
workspace = true
|