Authenticator/Cargo.toml
Bilal Elmoussaoui 3f3c47595a favicons: Split into a separate crate
This also stops fetching icons for a specific size and instead fetches the best size there is
that fixes the runtime stack error

Fixes #312
2022-04-22 00:33:19 +02:00

40 lines
1.3 KiB
TOML

[package]
edition = "2021"
name = "authenticator"
version = "4.1.0"
[dependencies]
adw = {package = "libadwaita", version = "0.1.0"}
anyhow = "1.0"
ashpd = {version = "0.3", features = ["feature_pipewire", "feature_gtk4"]}
binascii = "0.1"
diesel = {version = "1.4", features = ["sqlite", "r2d2"]}
diesel_migrations = {version = "1.4", features = ["sqlite"]}
gettext-rs = {version = "0.7", features = ["gettext-system"]}
gst = {package = "gstreamer", version = "0.18"}
gst4gtk = { package = "gst-plugin-gtk4", version = "0.1"}
gtk = {package = "gtk4", version = "0.4"}
gtk-macros = "0.3"
search-provider = "0.3"
hex = { version = "0.4.3", features = [ "serde" ] }
log = "0.4"
once_cell = "1.9"
percent-encoding = "2.1"
pretty_env_logger = "0.4"
qrcode = {version = "0.12", features = ["image"]}
rand = "0.8"
ring = "0.16"
rust-argon2 = "1.0"
secret-service = "2.0"
serde = "1.0"
serde_json = "1.0"
unicase = "2.6"
url = "2.2"
zbar-rust = "0.0"
scrypt = { version = "0.10", default-features = false }
aes-gcm = "0.9.4"
base64 = "0.13.0"
uuid = { version = "1.0", features = ["v4"] }
favicon-scrapper = {path = "./favicon-scrapper"}
image = {version = "0.24", default-features = false, features = ["png"]}
tokio = { version = "1.0", features = ["rt-multi-thread", "fs", "io-util"] }