-
Notifications
You must be signed in to change notification settings - Fork 2
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
637cbba
commit 8bf7759
Showing
3 changed files
with
31 additions
and
29 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,17 +1,22 @@ | ||
Package: b64 | ||
Title: What the Package Does (One Line, Title Case) | ||
Version: 0.0.0.9000 | ||
Title: Fast and Vectorized Base 64 Engine | ||
Version: 0.1.0 | ||
Authors@R: | ||
person("Josiah", "Parry", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0001-9910-865X")) | ||
Description: What the package does (one paragraph). | ||
Description: Provides a fast, lightweight, and vectorized base 64 engine | ||
to encode and decode character and raw vectors as well as files stored | ||
on disk. Common base 64 alphabets are supported out of the box | ||
including the standard, URL-safe, bcrypt, crypt, 'BinHex', and | ||
IMAP-modified UTF-7 alphabets. Custom engines can be created to | ||
support unique base 64 encoding and decoding needs. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
Language: en | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
Config/rextendr/version: 0.3.1.9000 | ||
SystemRequirements: Cargo (rustc package manager) | ||
SystemRequirements: Cargo (Rust's package manager), rustc | ||
Imports: | ||
blob, | ||
cli, | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# b64 0.1.0 | ||
|
||
* Initial CRAN submission. |
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