mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 08:44:40 +01:00

Also switch to tracing while we are at it. Might need to refactor the whole keyring module in a later commit
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "authenticator"
|
|
version = "4.1.1"
|
|
|
|
[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" ] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
once_cell = "1.9"
|
|
percent-encoding = "2.1"
|
|
qrcode = {version = "0.12", features = ["image"]}
|
|
rand = "0.8"
|
|
ring = "0.16"
|
|
rust-argon2 = "1.0"
|
|
oo7 = {version = "0.1.0-alpha.3", default-features = false, features = ["tokio_runtime", "tracing"]}
|
|
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"] }
|