41 lines
950 B
TOML
41 lines
950 B
TOML
[package]
|
|
name = "linux-hello-settings"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "GNOME Settings application for Linux Hello facial authentication"
|
|
|
|
[[bin]]
|
|
name = "linux-hello-settings"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# GTK4 and Adwaita
|
|
gtk4 = { version = "0.9", features = ["v4_12"] }
|
|
libadwaita = { version = "0.7", features = ["v1_4"] }
|
|
glib = "0.20"
|
|
|
|
# D-Bus
|
|
zbus = { version = "4.0", features = ["tokio"] }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "sync", "time"] }
|
|
|
|
# Shared types
|
|
linux-hello-common = { path = "../linux-hello-common" }
|
|
|
|
# Error handling and serialization
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
# Date/time formatting
|
|
chrono = "0.4"
|
|
|
|
# Logging
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|