-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97613c1
commit 63210ee
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,44 @@ | ||
Package: keyring | ||
Title: Access the System Credential Store from R | ||
Version: 1.3.1.9000 | ||
Authors@R: | ||
c(person(given = "Gábor", family = "Csárdi", role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
person(given = "Alec", family = "Wong", role = "ctb"), | ||
person("Posit Software, PBC", role = c("cph", "fnd")) | ||
) | ||
Authors@R:c( | ||
person("Gábor", "Csárdi", , "[email protected]", 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. | ||
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#readme | ||
BugReports: https://github.com/r-lib/keyring/issues | ||
RoxygenNote: 7.2.3 | ||
Roxygen: list(markdown = TRUE, r6 = FALSE) | ||
Depends: | ||
R (>= 3.6) | ||
Imports: | ||
assertthat, | ||
askpass, | ||
assertthat, | ||
filelock, | ||
openssl, | ||
R6, | ||
utils, | ||
sodium, | ||
yaml, | ||
filelock, | ||
rappdirs, | ||
tools | ||
sodium, | ||
tools, | ||
utils, | ||
yaml | ||
Suggests: | ||
callr, | ||
covr, | ||
mockery, | ||
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: | ||
|
@@ -51,7 +55,3 @@ Collate: | |
'package.R' | ||
'pass.R' | ||
'utils.R' | ||
Config/Needs/website: tidyverse/tidytemplate | ||
Config/testthat/edition: 3 | ||
Depends: | ||
R (>= 3.6) |