-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "tmuntaner-keyring"
authors = ["Thomas Muntaner <thomas.muntaner@gmail.com>"]
version = "0.1.0-alpha.10"
edition = "2018"
license = "MPL-2.0"
description = "A keyring client for linux, mac, and windows"
homepage = "https://github.com/tmuntaner/keyring-rs"
repository = "https://github.com/tmuntaner/keyring-rs"
documentation = "https://docs.rs/tmuntaner-keyring"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
[target.'cfg(target_os = "windows")'.dependencies]
widestring = "0.5"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "^0.33"
features = [
"Win32_Foundation",
"Win32_Security_Credentials",
"Win32_System_SystemInformation",
]
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.3"
[target.'cfg(target_os = "linux")'.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
zbus = "2.0"
zvariant = "3.0"
zvariant_derive = "3.0"
openssl = "0.10"
hkdf = "^0.12"
aes = "0.8"
sha2 = "^0.10"
cbc = "0.1.1"
cipher = {version = "0.4.3", features=["alloc"]}