2022-04-05 16:54:44 +02:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
exclude = ["index.node"]
|
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "desktop_native"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2022-10-24 11:46:50 +02:00
|
|
|
[features]
|
2023-05-16 11:22:39 +02:00
|
|
|
default = []
|
|
|
|
manual_test = []
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-12-11 15:23:48 +01:00
|
|
|
aes = "=0.8.3"
|
|
|
|
anyhow = "=1.0.75"
|
2024-02-12 11:18:51 +01:00
|
|
|
arboard = { version = "=3.3.0", default-features = false, features = ["wayland-data-control"] }
|
2023-12-19 15:27:04 +01:00
|
|
|
base64 = "=0.21.5"
|
2023-05-16 11:22:39 +02:00
|
|
|
cbc = { version = "=0.1.2", features = ["alloc"] }
|
2023-12-11 15:23:48 +01:00
|
|
|
napi = { version = "=2.13.3", features = ["async"] }
|
2023-06-02 09:50:40 +02:00
|
|
|
napi-derive = "=2.13.0"
|
2023-05-16 11:22:39 +02:00
|
|
|
rand = "=0.8.5"
|
|
|
|
retry = "=2.0.0"
|
2023-12-11 15:23:48 +01:00
|
|
|
scopeguard = "=1.2.0"
|
2023-12-19 16:12:44 +01:00
|
|
|
sha2 = "=0.10.8"
|
2023-12-19 16:34:22 +01:00
|
|
|
thiserror = "=1.0.51"
|
2023-12-11 15:23:48 +01:00
|
|
|
tokio = { version = "=1.32.0", features = ["full"] }
|
2023-12-19 17:32:00 +01:00
|
|
|
typenum = "=1.17.0"
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-05-16 11:22:39 +02:00
|
|
|
napi-build = "=2.0.1"
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-10-02 18:50:57 +02:00
|
|
|
widestring = "=1.0.2"
|
2024-01-08 14:37:32 +01:00
|
|
|
windows = { version = "=0.52.0", features = [
|
2022-04-05 16:54:44 +02:00
|
|
|
"Foundation",
|
2022-07-25 13:24:13 +02:00
|
|
|
"Security_Credentials_UI",
|
2023-04-18 15:09:47 +02:00
|
|
|
"Security_Cryptography",
|
2022-04-05 16:54:44 +02:00
|
|
|
"Storage_Streams",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security_Credentials",
|
2022-07-25 13:24:13 +02:00
|
|
|
"Win32_System_WinRT",
|
2022-09-15 16:17:09 +02:00
|
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
2023-05-16 11:22:39 +02:00
|
|
|
] }
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
2023-05-16 11:22:39 +02:00
|
|
|
keytar = "=0.1.6"
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-12-19 15:54:42 +01:00
|
|
|
core-foundation = "=0.9.4"
|
2023-12-11 15:23:48 +01:00
|
|
|
security-framework = "=2.9.2"
|
|
|
|
security-framework-sys = "=2.9.1"
|
2022-04-05 16:54:44 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2023-12-19 15:31:10 +01:00
|
|
|
gio = "=0.18.4"
|
2023-12-11 15:23:48 +01:00
|
|
|
libsecret = "=0.4.0"
|