forked from whisperfish/rust-phonenumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 826 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
[package]
name = "phonenumber"
version = "0.2.4+8.11.3"
edition = "2018"
authors = ["meh. <[email protected]>"]
license = "Apache-2.0"
description = "Library for parsing, formatting and validating international phone numbers."
repository = "https://github.com/1aim/rust-phonenumber"
keywords = ["phonenumber", "phone", "number", "parser", "formatter"]
readme = "README.md"
[dependencies]
regex = "1.1"
regex-cache = "0.2"
lazy_static = "1.2"
fnv = "1.0"
failure = "0.1"
quick-xml = "0.17"
itertools = "0.8"
either = "1.5"
nom = "5"
serde = "1.0"
serde_derive = "1.0"
bincode = "1.0"
[build-dependencies]
quick-xml = "0.17"
failure = "0.1"
regex = "1.1"
serde = "1.0"
serde_derive = "1.0"
bincode = "1.0"
[dev-dependencies]
doc-comment = "0.3"