-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
45 lines (37 loc) · 888 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 = "brcode"
version = "1.4.3"
authors = ["Julia Naomi <[email protected]>"]
edition = "2018"
description = "Crate to parse and emit BR Codes"
readme = "README.md"
documentation = "https://docs.rs/brcode/"
repository = "https://github.com/naomijub/brcode"
keywords = ["BRCode", "QRCode", "EMV"]
license = "LGPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "brcode"
path = "src/lib.rs"
crate-type = ["rlib", "dylib"]
[dependencies]
edn-rs = "0.15.0"
edn-derive = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1"
qrcode-generator = "4.0.3"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "parse"
harness = false
[[bench]]
name = "to_brcode"
harness = false
[[bench]]
name = "both_ways"
harness = false
[[bench]]
name = "crc16"
harness = false