mirror of
https://github.com/Automattic/harper.git
synced 2025-12-23 08:48:15 +00:00
Bumps [unicode-script](https://github.com/unicode-rs/unicode-script) from 0.5.7 to 0.5.8. - [Commits](https://github.com/unicode-rs/unicode-script/compare/v0.5.7...v0.5.8) --- updated-dependencies: - dependency-name: unicode-script dependency-version: 0.5.8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "harper-core"
|
|
version = "1.1.0"
|
|
edition = "2024"
|
|
description = "The language checker for developers."
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/automattic/harper"
|
|
|
|
[dependencies]
|
|
blanket = "0.4.0"
|
|
fst = "0.4.7"
|
|
hashbrown = { version = "0.16.1", features = ["serde"] }
|
|
is-macro = "0.3.6"
|
|
itertools = "0.14.0"
|
|
lazy_static = "1.5.0"
|
|
ordered-float = { version = "5.1.0", features = ["serde"] }
|
|
paste = "1.0.14"
|
|
pulldown-cmark = "0.13.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
smallvec = { version = "1.15.1", features = ["serde"] }
|
|
thiserror = "2.0.17"
|
|
unicode-blocks = "0.1.9"
|
|
unicode-script = "0.5.8"
|
|
unicode-width = "0.2.2"
|
|
levenshtein_automata = { version = "0.2.1", features = ["fst_automaton"] }
|
|
cached = "0.56.0"
|
|
lru = "0.16.2"
|
|
foldhash = "0.2.0"
|
|
strum_macros = "0.27.2"
|
|
strum = "0.27.2"
|
|
ammonia = "4.1.2"
|
|
harper-brill = { path = "../harper-brill", version = "1.0.0" }
|
|
bitflags = { version = "2.10.0", features = ["serde"] }
|
|
trie-rs = "0.4.2"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8.1", default-features = false }
|
|
rand = "0.8.5"
|
|
quickcheck = "1.0.3"
|
|
quickcheck_macros = "1.1.0"
|
|
once_cell = "1.21.3"
|
|
rayon = "1.11.0"
|
|
|
|
[[bench]]
|
|
name = "parse_essay"
|
|
harness = false
|
|
|
|
[features]
|
|
default = []
|
|
concurrent = []
|