-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (35 loc) · 1.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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
edition = "2021"
name = "lo_"
version = "0.1.10"
authors = ["Saddam H <thedevsaddam@gmail.com>"]
description = "A modern Rust utility library delivering modularity, performance & extras ported from JavaScript Lodash"
repository = "https://github.com/thedevsaddam/lo_"
homepage = "https://github.com/thedevsaddam/lo_"
documentation = "https://docs.rs/lo_"
keywords = ["lodash", "js", "javascript", "utility", "rust-lodash"]
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["array", "string", "condition"]
array = ["chunk", "contains", "difference", "find", "intersection", "uniq", "without"]
chunk =[]
contains =[]
difference =[]
find = []
intersection =[]
uniq =[]
without =[]
string = ["camel_case", "capitalize", "ends_with", "lower_first", "starts_with", "upper_first", "words", "template"]
camel_case = []
capitalize = []
ends_with = []
lower_first = []
starts_with = []
upper_first = []
words = ["regex"]
template = []
condition = []
[dependencies]
regex = { version = "1.10.2", optional = true }