forked from rexyai/RestRserve
-
Notifications
You must be signed in to change notification settings - Fork 0
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
8c6c222
commit d67ee17
Showing
1 changed file
with
10 additions
and
12 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,31 +1,28 @@ | ||
Package: RestRserve | ||
Type: Package | ||
Title: High-Performance Web Server for Building Microservices and App Backends | ||
Description: | ||
Allows to easily create high-performance HTTP API from R functions. | ||
Provides many small convenient tools like flexible logging, JSON encoding, | ||
Title: High-Performance Web Server for Building Microservices and App Backends | ||
Description: | ||
Allows to easily create high-performance HTTP API from R functions. | ||
Provides many small convenient tools like flexible logging, JSON encoding, | ||
utils for app deployment and management. | ||
Version: 0.2.0 | ||
Authors@R: c( | ||
person(given = "Dmitriy", | ||
family = "Selivanov", | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-5413-1506")), | ||
person(given = "Artem", | ||
family = "Klevtsov", | ||
role = "aut", | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-0492-6647")), | ||
person(given = "rexy.ai", | ||
role = c("cph", "fnd")) | ||
) | ||
Maintainer: Dmitriy Selivanov <[email protected]> | ||
URL: http://restrserve.org | ||
role = c("cph", "fnd"))) | ||
URL: http://restrserve.org, https://github.com/dselivanov/RestRserve | ||
BugReports: https://github.com/dselivanov/RestRserve/issues | ||
License: GPL (>= 2) | ||
ByteCompile: true | ||
Depends: | ||
Depends: | ||
R (>= 3.6.0) | ||
Imports: | ||
methods, | ||
|
@@ -44,9 +41,10 @@ Suggests: | |
rmarkdown, | ||
curl, | ||
sys | ||
LinkingTo: | ||
LinkingTo: | ||
Rcpp | ||
SystemRequirements: C++11 | ||
ByteCompile: true | ||
KeepSource: true | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|