2024-07-01 15:19:29 +02:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "desktop_core"
|
|
|
|
version = "0.0.0"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[features]
|
2024-09-05 12:54:24 +02:00
|
|
|
default = ["sys"]
|
2024-07-01 15:19:29 +02:00
|
|
|
manual_test = []
|
|
|
|
|
2024-09-05 12:54:24 +02:00
|
|
|
sys = [
|
|
|
|
"dep:widestring",
|
|
|
|
"dep:windows",
|
|
|
|
"dep:core-foundation",
|
|
|
|
"dep:security-framework",
|
|
|
|
"dep:security-framework-sys",
|
|
|
|
"dep:gio",
|
|
|
|
"dep:libsecret",
|
|
|
|
"dep:zbus",
|
|
|
|
"dep:zbus_polkit",
|
|
|
|
]
|
|
|
|
|
2024-07-01 15:19:29 +02:00
|
|
|
[dependencies]
|
|
|
|
aes = "=0.8.4"
|
|
|
|
anyhow = "=1.0.86"
|
|
|
|
arboard = { version = "=3.4.0", default-features = false, features = [
|
|
|
|
"wayland-data-control",
|
|
|
|
] }
|
|
|
|
base64 = "=0.22.1"
|
|
|
|
cbc = { version = "=0.1.2", features = ["alloc"] }
|
2024-09-05 12:54:24 +02:00
|
|
|
dirs = "=5.0.1"
|
|
|
|
futures = "=0.3.30"
|
|
|
|
interprocess = { version = "=2.2.1", features = ["tokio"] }
|
2024-08-19 14:37:27 +02:00
|
|
|
libc = "=0.2.155"
|
2024-09-05 12:54:24 +02:00
|
|
|
log = "=0.4.22"
|
2024-07-01 15:19:29 +02:00
|
|
|
rand = "=0.8.5"
|
|
|
|
retry = "=2.0.0"
|
|
|
|
scopeguard = "=1.2.0"
|
|
|
|
sha2 = "=0.10.8"
|
|
|
|
thiserror = "=1.0.61"
|
2024-08-19 14:37:27 +02:00
|
|
|
tokio = { version = "=1.38.0", features = ["io-util", "sync", "macros"] }
|
2024-09-05 12:54:24 +02:00
|
|
|
tokio-util = "=0.7.11"
|
2024-07-01 15:19:29 +02:00
|
|
|
typenum = "=1.17.0"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2024-09-05 12:54:24 +02:00
|
|
|
widestring = { version = "=1.1.0", optional = true }
|
2024-07-01 15:19:29 +02:00
|
|
|
windows = { version = "=0.57.0", features = [
|
|
|
|
"Foundation",
|
|
|
|
"Security_Credentials_UI",
|
|
|
|
"Security_Cryptography",
|
|
|
|
"Storage_Streams",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security_Credentials",
|
|
|
|
"Win32_System_WinRT",
|
|
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
2024-09-05 12:54:24 +02:00
|
|
|
], optional = true }
|
2024-07-01 15:19:29 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
|
|
keytar = "=0.1.6"
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-09-05 12:54:24 +02:00
|
|
|
core-foundation = { version = "=0.9.4", optional = true }
|
|
|
|
security-framework = { version = "=2.11.0", optional = true }
|
|
|
|
security-framework-sys = { version = "=2.11.0", optional = true }
|
2024-07-01 15:19:29 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2024-09-05 12:54:24 +02:00
|
|
|
gio = { version = "=0.19.5", optional = true }
|
|
|
|
libsecret = { version = "=0.5.0", optional = true }
|
|
|
|
zbus = { version = "=4.3.1", optional = true }
|
|
|
|
zbus_polkit = { version = "=4.0.0", optional = true }
|