-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 1 KB
/
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
[package]
name = "ranting"
version = "0.2.1"
authors = ["Roel Kluin <[email protected]>"]
edition = "2021"
license-file = "LICENSE.txt"
description = "Linguistic formatting placeholder extensions for rust"
homepage = "https://github.com/RoelKluin/ranting.rs"
repository = "https://github.com/RoelKluin/ranting.rs"
readme = "README.md"
keywords = ["placeholder", "inflection", "verbs", "nouns", "indefinite-article"]
categories = ["text-processing", "template-engine"]
documentation = "https://docs.rs/ranting/0.2.1/ranting/"
[dependencies]
document-features = "0.2"
english-numbers = "0.3"
in_definite = "0.2"
lazy_static = "1.4.0"
ranting_derive = { version = "=0.2.1", path = "ranting_derive", default-features = false }
regex = "1.6.0"
strum_macros = "0.24"
strum = "0.24"
### FEATURES #################################################################
[features]
default = ["ranting_derive/default"]
## Print during compilation each `say!()` pattern with its `format!()` conversion.
debug = ["ranting_derive/debug"]