-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 951 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "readsight"
version = "1.0.2"
edition = "2021"
rust-version = "1.74"
license = "MIT"
description = "Multilingual readability library — 86 languages, 17 formulas, TeX-based syllable counting via the Frank M. Liang algorithm."
repository = "https://github.com/MADEVAL/ReadSight"
homepage = "https://github.com/MADEVAL/ReadSight"
keywords = ["readability", "syllable", "hyphenation", "flesch-kincaid", "multilingual"]
categories = ["text-processing", "internationalization"]
readme = "README.md"
exclude = ["temp/"]
[dependencies]
regex = "1"
fancy-regex = "0.13"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
include_dir = "0.7"
indexmap = { version = "2", features = ["serde"] }
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
[[example]]
name = "demo"
[profile.test]
opt-level = 2