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"
|
2023-10-13 22:52:48 +02:00
|
|
|
version = "4.4.0"
|
2023-06-20 23:03:39 +02:00
|
|
|
rust-version = "1.70"
|
2019-09-03 00:07:06 +00:00
|
|
|
|
2023-10-06 23:48:59 +02:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
[profile.dev.package."*"]
|
|
|
|
opt-level = 3
|
|
|
|
|
2019-09-03 00:07:06 +00:00
|
|
|
[dependencies]
|
2024-07-18 00:02:00 -07:00
|
|
|
adw = {package = "libadwaita", version = "0.7", features = ["v1_5"]}
|
2023-03-26 17:29:58 +02:00
|
|
|
aes-gcm = "0.10"
|
2020-10-29 01:09:40 +01:00
|
|
|
anyhow = "1.0"
|
2024-07-18 00:02:00 -07:00
|
|
|
aperture = "0.7"
|
|
|
|
ashpd = {version = "0.9", default-features = false, features = ["gtk4", "tokio", "tracing"]}
|
2023-03-26 17:29:58 +02:00
|
|
|
data-encoding = "2.3"
|
2022-12-24 20:07:00 +01:00
|
|
|
diesel = {version = "2.0", features = ["sqlite", "r2d2"]}
|
|
|
|
diesel_migrations = {version = "2.0", features = ["sqlite"]}
|
2023-03-26 17:29:58 +02:00
|
|
|
favicon-scrapper = {path = "./favicon-scrapper"}
|
2023-03-27 15:30:43 +02:00
|
|
|
futures-channel = "0.3"
|
2023-04-19 11:07:08 +02:00
|
|
|
futures-executor = "0.3"
|
|
|
|
futures-util = "0.3"
|
2021-06-25 19:45:48 +02:00
|
|
|
gettext-rs = {version = "0.7", features = ["gettext-system"]}
|
2024-07-18 00:02:00 -07:00
|
|
|
gtk = {package = "gtk4", version = "0.9", features = ["v4_10"]}
|
2023-03-26 17:29:58 +02:00
|
|
|
hex = {version = "0.4.3", features = ["serde"]}
|
2024-03-24 15:17:36 +01:00
|
|
|
image = {version = "0.25", default-features = false, features = ["png"]}
|
2024-02-14 18:12:28 +01:00
|
|
|
once_cell = "1.9"
|
2024-02-21 18:51:10 +01:00
|
|
|
oo7 = {version = "0.3", default-features = false, features = ["tokio", "native_crypto", "tracing"]}
|
2021-01-22 20:25:02 +01:00
|
|
|
percent-encoding = "2.1"
|
2023-10-13 22:56:45 +02:00
|
|
|
prost = "0.12"
|
2023-08-12 01:18:31 +02:00
|
|
|
qrencode = {version = "0.14", features = ["image"]}
|
2021-01-23 14:36:34 +01:00
|
|
|
rand = "0.8"
|
2023-10-13 22:56:45 +02:00
|
|
|
ring = "0.17"
|
2023-07-08 22:01:47 +02:00
|
|
|
rust-argon2 = {version = "2.0", default-features = false}
|
2023-03-26 17:29:58 +02:00
|
|
|
scrypt = {version = "0.11", default-features = false}
|
2024-02-21 18:51:10 +01:00
|
|
|
search-provider = {version = "0.8", default-features = false, features = ["tokio"]}
|
2020-12-07 06:45:52 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2023-03-26 17:29:58 +02:00
|
|
|
tokio = {version = "1.0", default-features = false, features = ["rt-multi-thread", "fs", "io-util"]}
|
|
|
|
tracing = {version = "0.1", default-features = false}
|
|
|
|
tracing-subscriber = {version = "0.3", default-features = false, features = ["fmt"]}
|
2021-01-22 20:25:02 +01:00
|
|
|
url = "2.2"
|
2023-03-26 17:29:58 +02:00
|
|
|
uuid = {version = "1.0", features = ["v4"]}
|
2021-01-22 20:25:02 +01:00
|
|
|
zbar-rust = "0.0"
|
2023-04-10 01:38:17 +02:00
|
|
|
zeroize = {version = "1", features = ["zeroize_derive"]}
|
2024-04-27 22:41:51 +02:00
|
|
|
zip = { version = "2.1", features = ["aes-crypto"] }
|