forked from humenda/isolang-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 922 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
authors = ["Sebastian Humenda <shumenda@gmx.de>"]
build = "build.rs"
description = "Efficient, static lookup table for ISO 639 language codes"
documentation = "https://docs.rs/isolang"
keywords = [
"iso",
"language",
"language-code",
"autonym"
]
license = "Apache-1.0"
name = "isolang"
readme = "README.md"
repository = "https://github.com/humenda/isolang-rs"
version = "1.0.0"
[build-dependencies]
phf_codegen = "0.7.24"
[dependencies]
phf = "0.7.24"
[dependencies.serde]
optional = true
version = "1.0"
[dependencies.diesel]
optional = true
version = "0.99.0"
features = ["postgres"]
[features]
default = ["english_names"]
english_names = []
local_names = []
serde_serialize = [
"serde",
]
diesel_sql = [
"diesel",
]
[dev-dependencies]
serde_json = "1.0"
diesel_derives = "0.99.0"
diesel_migrations = "0.99.0"
[dev-dependencies.diesel]
version = "0.99.0"
features = ["postgres"]