mirror of
https://github.com/bitwarden/desktop.git
synced 2024-10-31 08:10:29 +01:00
44 lines
937 B
TOML
44 lines
937 B
TOML
[package]
|
|
edition = "2021"
|
|
exclude = ["index.node"]
|
|
license = "GPL-3.0"
|
|
name = "desktop_native"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
napi = {version = "2", features = ["async"]}
|
|
napi-derive = "2"
|
|
scopeguard = "1.1.0"
|
|
tokio = {version = "1.17.0", features = ["full"]}
|
|
|
|
[build-dependencies]
|
|
napi-build = "1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
widestring = "0.5.1"
|
|
windows = {version = "0.32.0", features = [
|
|
"alloc",
|
|
"Foundation",
|
|
"Storage_Streams",
|
|
"Win32_Foundation",
|
|
"Win32_Security_Credentials",
|
|
]}
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
keytar = "0.1.6"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.9.3"
|
|
security-framework = "2.6.1"
|
|
security-framework-sys = "2.6.1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gio = "0.15.6"
|
|
libsecret = "0.1.3"
|