Authenticator/Cargo.toml

42 lines
1.5 KiB
TOML
Raw Normal View History

2019-09-03 00:07:06 +00:00
[package]
2022-01-16 18:07:05 +01:00
edition = "2021"
2019-09-03 00:07:06 +00:00
name = "authenticator"
2022-12-27 14:51:14 +01:00
version = "4.2.0"
2019-09-03 00:07:06 +00:00
[dependencies]
2023-02-14 20:04:25 +01:00
adw = {package = "libadwaita", version = "0.3", features = ["v1_2"]}
anyhow = "1.0"
ashpd = {version = "0.4.0-alpha.4", default-features = false, features = ["pipewire", "gtk4", "tokio", "tracing"]}
2021-02-05 10:09:59 +00:00
binascii = "0.1"
2022-12-24 20:07:00 +01:00
diesel = {version = "2.0", features = ["sqlite", "r2d2"]}
diesel_migrations = {version = "2.0", features = ["sqlite"]}
2021-06-25 19:45:48 +02:00
gettext-rs = {version = "0.7", features = ["gettext-system"]}
2023-02-14 20:04:25 +01:00
gst = {package = "gstreamer", version = "0.20"}
gst4gtk = { package = "gst-plugin-gtk4", version = "0.10", features = ["wayland", "x11egl", "x11glx"]}
gtk = {package = "gtk4", version = "0.6", features = ["v4_10"]}
2021-06-25 19:45:48 +02:00
gtk-macros = "0.3"
2023-02-14 20:04:25 +01:00
search-provider = "0.5"
2022-01-28 16:07:53 +01:00
hex = { version = "0.4.3", features = [ "serde" ] }
tracing = "0.1"
tracing-subscriber = "0.3"
2022-01-04 22:51:02 +01:00
once_cell = "1.9"
2021-01-22 20:25:02 +01:00
percent-encoding = "2.1"
qrcode = {version = "0.12", features = ["image"]}
rand = "0.8"
ring = "0.16"
2022-01-16 18:07:05 +01:00
rust-argon2 = "1.0"
2023-02-14 20:04:25 +01:00
oo7 = {version = "0.1.0-beta.3", default-features = false, features = ["tokio", "native_crypto", "tracing"]}
2020-12-07 06:45:52 +01:00
serde = "1.0"
serde_json = "1.0"
2021-01-22 20:25:02 +01:00
unicase = "2.6"
url = "2.2"
zbar-rust = "0.0"
2022-03-24 15:44:08 +01:00
scrypt = { version = "0.10", default-features = false }
2022-12-24 20:07:00 +01:00
aes-gcm = "0.10"
base64 = "0.21"
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"] }
2022-12-24 20:07:00 +01:00
prost = "0.11"