-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
35 lines (31 loc) · 1.05 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
[package]
name = "keychain-services"
description = """
Rust access to macOS Keychain Services, including TouchID-guarded
access to cryptographic keys stored in the Secure Enclave
Processor (SEP).
"""
version = "0.1.2"
authors = ["Tony Arcieri <[email protected]>"]
license = "Apache-2.0"
homepage = "https://keychain-services.rs/"
documentation = "https://keychain-services.rs/docs/"
repository = "https://github.com/iqlusioninc/keychain-services.rs/"
readme = "README.md"
categories = ["api-bindings", "authentication", "cryptography", "hardware-support"]
keywords = ["ecdsa", "macos", "keychain", "touchid", "signatures"]
edition = "2018"
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "iqlusioninc/keychain-services.rs" }
[dependencies]
core-foundation = "0.7"
failure = "0.1"
failure_derive = "0.1"
zeroize = "1.1"
[dev-dependencies]
ring = "0.13"
tempfile = "3"
untrusted = "0.6"
[features]
interactive-tests = []