-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (27 loc) · 815 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
[package]
name = "crowbook-text-processing"
version = "1.1.1"
edition = "2018"
authors = ["Elisabeth Henry <[email protected]>"]
description = "Provides some utilities functions for escaping text (HTML/LaTeX) and formatting it according to typographic rules (smart quotes, ellipsis, french typograhic rules)"
readme = "README.md"
keywords = ["text"]
repository = "https://github.com/lise-henry/crowbook-text-processing/"
documentation = "https://docs.rs/crowbook-text-processing"
license = "MPL-2.0"
categories = ["text-processing"]
exclude = [
"benches/perf.ods",
]
[lib]
name = "crowbook_text_processing"
path = "src/lib/lib.rs"
[[bin]]
name = "crowbook_text_processing"
path = "src/bin/main.rs"
doc = false
[dependencies]
regex = "1"
lazy_static = "1"
[dev-dependencies]
pretty_assertions = "1"