forked from a-merezhanyi/voca_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 809 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
[package]
name = "voca_rs"
version = "1.9.1"
authors = ["Anatol Merezhanyi <a.merezhanyi@gmail.com>"]
license = "MIT"
description = "Voca_rs is a Rust library for manipulating strings. Inspired by Voca.js and string.py"
homepage = "https://e1r0nd.github.io/voca_rs/"
documentation = "https://docs.rs/voca_rs/"
repository = "https://github.com/e1r0nd/voca_rs"
keywords = ["string", "case", "snake", "camel", "unicode"]
categories = ["encoding"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[badges]
travis-ci = { repository = "e1r0nd/voca_rs" }
codecov = { repository = "e1r0nd/voca_rs", branch = "master", service = "github" }
[dependencies]
regex = "1.1.5"
stfu8 = "0.2.4"
unicode-segmentation = "1.2.0"
unidecode = "0.3.0"
[profile.dev]
lto = true
opt-level = 3