-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 942 Bytes
/
Cargo.toml
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
32
33
34
35
[package]
name = "ar-reshaper"
version = "1.5.0"
authors = ["Saeid Ghafari <[email protected]>"]
edition = "2021"
description = "A no-std crate to reconstruct Arabic, turkish and persian sentences to be used in applications that don't support Arabic script."
repository = "https://github.com/YouKnow-sys/ar-reshaper"
documentation = "https://docs.rs/ar-reshaper"
license = "MIT"
keywords = ["arabic", "persian", "turkish", "reshape", "no-std"]
readme = "README.md"
categories = ["algorithms"]
[features]
default = []
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
ttf-parser = { version = "0.20", optional = true }
[[example]]
name = "reshape_line"
path = "examples/reshape_line.rs"
[[example]]
name = "reshape_lines"
path = "examples/reshape_lines.rs"
[[example]]
name = "reshape_iterator"
path = "examples/reshape_iterator.rs"
[[example]]
name = "custom_config"
path = "examples/custom_config.rs"