-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 955 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 955 Bytes
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
[package]
authors = ["Daniel Brotsky <dev@brotsky.com>"]
description = "DBus Secret Service credential store for keyring"
homepage = "https://github.com/open-source-cooperative/keyring-rs/wiki/Keyring"
keywords = ["dbus", "secret-service", "credential-store", "keyring"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/open-source-cooperative/dbus-secret-service-keyring-store.git"
rust-version = "1.88"
exclude = [".github/"]
readme = "README.md"
name = "dbus-secret-service-keyring-store"
version = "1.0.0"
edition = "2024"
[features]
crypto-rust = ["dbus-secret-service/crypto-rust"]
crypto-openssl = ["dbus-secret-service/crypto-openssl"]
vendored = ["dbus-secret-service/vendored"]
[dependencies]
dbus-secret-service = { version = "4.1" }
keyring-core = { version = "1" }
[dev-dependencies]
fastrand = "2.4"
regex = "1.12"
sscanf = "0.5"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
features = ["crypto-rust"]