-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (36 loc) · 1.06 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
44
[package]
name = "iban"
description = "IBAN parsing library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/JohnPeel/iban"
documentation = "https://docs.rs/iban"
version = "0.1.8"
edition = "2021"
rust-version = "1.60.0"
[features]
default = ["std"]
std = []
rand = ["dep:rand"]
serde = ["dep:serde"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[dependencies]
arrayvec = { version = "0.7", default-features = false }
phf = { version = "0.11", default-features = false }
rand = { version = "0.8", default-features = false, optional = true }
serde = { version = "1.0.7", default-features = false, features = ["derive"], optional = true }
[build-dependencies]
csv = "1"
phf_codegen = "0.11"
quote = "1"
regex = "1"
serde = { version = "1.0.7", features = ["derive"] }
# NOTE: `direct-minimal-versions` is weird with serde.
serde_derive = "1.0.7"
[dev-dependencies]
serde_json = "1"
test-case = "3"
rand = "0.8"
# NOTE: test-case-core has an invalid minimal version for syn.
syn = { version = ">=1.0.91", default-features = false }