2021-05-19 14:10:48 +00:00
|
|
|
[package]
|
2021-05-24 14:37:27 +00:00
|
|
|
name = "matrix-qrcode"
|
2021-06-22 12:57:46 +00:00
|
|
|
description = "Library to encode and decode QR codes for interactive verifications in Matrix land"
|
2021-05-19 14:10:48 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Damir Jelić <poljar@termina.org.uk>"]
|
|
|
|
edition = "2018"
|
2021-06-22 12:57:46 +00:00
|
|
|
homepage = "https://github.com/matrix-org/matrix-rust-sdk"
|
|
|
|
keywords = ["matrix", "chat", "messaging", "ruma", "nio"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
2021-05-19 14:10:48 +00:00
|
|
|
|
2021-05-20 13:02:14 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["docs"]
|
|
|
|
rustdoc-args = ["--cfg", "feature=\"docs\""]
|
|
|
|
|
2021-05-19 14:10:48 +00:00
|
|
|
[features]
|
|
|
|
default = ["decode_image"]
|
|
|
|
decode_image = ["image", "rqrr", "qrcode/image", "qrcode/svg"]
|
|
|
|
|
2021-05-20 13:02:14 +00:00
|
|
|
docs = ["decode_image"]
|
|
|
|
|
2021-05-19 14:10:48 +00:00
|
|
|
[dependencies]
|
|
|
|
base64 = "0.13.0"
|
|
|
|
byteorder = "1.4.3"
|
|
|
|
image = { version = "0.23.14", optional = true }
|
|
|
|
qrcode = { version = "0.12.0", default-features = false }
|
2021-06-21 14:42:38 +00:00
|
|
|
rqrr = { version = "0.3.2", optional = true }
|
2021-08-12 07:41:05 +00:00
|
|
|
ruma-identifiers = "0.20.0"
|
2021-06-21 14:42:38 +00:00
|
|
|
thiserror = "1.0.25"
|