-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (37 loc) · 946 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
[package]
name = "gtin-validate"
version = "1.3.0"
authors = ["Austin Hartzheim <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["upc", "ean", "gtin"]
repository = "https://github.com/austinhartzheim/rust-gtin-validate/"
description = """
Validate GTIN barcodes including UPC-A and EAN-13.
This module has built-in support for GTIN-8, GTIN-12 (UPC-A), GTIN-13 (EAN-13), and GTIN-14 codes.
"""
include = [
"**/*.rs",
"Cargo.toml",
"LICENSE-MIT",
"LICENSE-APACHE"
]
[dependencies]
[dev-dependencies]
criterion = "0.3"
proptest = "0.9"
[[bench]]
name = "gtin8"
harness = false
[[bench]]
name = "gtin12"
harness = false
[[bench]]
name = "gtin13"
harness = false
[[bench]]
name = "gtin14"
harness = false
[badges]
travis-ci = { repository = "austinhartzheim/rust-gtin-validate" }
coveralls = { repository = "austinhartzheim/rust-gtin-validate", branch = "master", service = "github" }