-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
51 lines (40 loc) · 1.22 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
45
46
47
48
49
50
51
[package]
name = "bbqr"
version = "0.3.4"
edition = "2021"
license = "MIT"
rust-version = "1.68"
readme = "README.md"
homepage = "https://github.com/SatoshiPortal/bbqr-rust"
repository = "https://github.com/SatoshiPortal/bbqr-rust"
documentation = "https://docs.rs/bbqr"
keywords = ["BBQr", "coinkite", "QR"]
description = "Implementaion of the bbqr spec in rust"
authors = ["Satoshi Portal Developers <[email protected]>", "Praveen Perera <[email protected]>", "ishi <[email protected]>"]
[lib]
crate_type = ["cdylib", "rlib", "staticlib"]
[features]
default = ["qr-codes"]
qr-codes = ["fast_qr"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# hex/base32 encoding
data-encoding = "2.6.0"
# generate qr code
fast_qr = { version = "0.12.5", features = ["svg"], optional = true }
# zlib compression
flate2 = { version = "1.0", features = ["any_zlib", "zlib"], default-features = false }
# logging
log = "0.4.21"
# base36 encoding
radix_fmt = "1.0.0"
# error handling
thiserror = "1.0.59"
[dev-dependencies]
pretty_assertions = "1.4.0"
# for testing
rand = "0.8.5"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"