-
Notifications
You must be signed in to change notification settings - Fork 28
/
DESCRIPTION
57 lines (57 loc) · 1.55 KB
/
DESCRIPTION
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Package: keyring
Title: Access the System Credential Store from R
Version: 1.3.2.9000
Authors@R: c(
person("Gábor", "Csárdi", , "csardi.gabor@gmail.com", role = c("aut", "cre")),
person("Alec", "Wong", role = "ctb"),
person("Posit Software, PBC", role = c("cph", "fnd"))
)
Description: Platform independent 'API' to access the operating system's
credential store. Currently supports: 'Keychain' on 'macOS',
Credential Store on 'Windows', the Secret Service 'API' on 'Linux',
and simple, platform independent stores implemented with environment
variables or encrypted files. Additional storage back-ends can be
added easily.
License: MIT + file LICENSE
URL: https://keyring.r-lib.org/, https://github.com/r-lib/keyring
BugReports: https://github.com/r-lib/keyring/issues
Depends:
R (>= 3.6)
Imports:
askpass,
assertthat,
filelock,
openssl,
R6,
rappdirs,
sodium,
tools,
utils,
yaml
Suggests:
callr,
covr,
testthat (>= 3.0.0),
withr
Config/Needs/website: tidyverse/tidytemplate
Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE, r6 = FALSE)
RoxygenNote: 7.2.3
SystemRequirements: Optional: libsecret on Linux (libsecret-1-dev on
Debian/Ubuntu, libsecret-devel on Fedora/CentOS)
Collate:
'api.R'
'assertions.R'
'backend-class.R'
'backend-env.R'
'backend-file.R'
'backend-macos.R'
'backend-secret-service.R'
'backend-wincred.R'
'default_backend.R'
'keyring-package.R'
'mocks.R'
'package.R'
'pass.R'
'utils.R'