matrix-rust-sdk/crates/matrix_qrcode/Cargo.toml

33 lines
1016 B
TOML
Raw Normal View History

[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-09-10 18:45:17 +00:00
version = "0.2.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"
# This isn't yet supported by the stable cargo, we'll enable it when it is.
# rust-version = "1.54"
2021-06-22 12:57:46 +00:00
repository = "https://github.com/matrix-org/matrix-rust-sdk"
2021-05-20 13:02:14 +00:00
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = ["decode_image"]
decode_image = ["image", "rqrr", "qrcode/image", "qrcode/svg"]
2021-05-20 13:02:14 +00:00
docs = ["decode_image"]
[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"