-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (47 loc) · 1.29 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (47 loc) · 1.29 KB
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
52
53
54
55
56
57
58
59
[package]
name = "bbqr"
version = "0.4.1"
edition = "2021"
license = "MIT"
rust-version = "1.73"
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 <contact@bullbitcoin.com>",
"Praveen Perera <praveen@avencera.com>",
"ishi <vishalmenon.92@gmail.com>",
]
[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.11"
# generate qr code
fast_qr = { version = "0.13", features = ["svg"], optional = true }
# zlib compression
flate2 = { version = "1.1", features = ["any_zlib", "zlib-rs"], default-features = false }
# logging
log = "0.4.29"
# base36 encoding
radix_fmt = "1.0.0"
# error handling
thiserror = "2.0"
### dev-dependencies
[dev-dependencies]
pretty_assertions = "1.4.0"
# for testing
rand = "0.10"
# for examples
bitcoin = "0.32"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"