-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathDESCRIPTION
83 lines (83 loc) · 3.36 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Type: Package
Package: httpuv
Title: HTTP and WebSocket Server Library
Version: 1.6.15.9000
Authors@R: c(
person("Joe", "Cheng", , "[email protected]", role = "aut"),
person("Winston", "Chang", , "[email protected]", role = c("aut", "cre")),
person("Posit, PBC", "fnd", role = "cph"),
person("Hector", "Corrada Bravo", role = "ctb"),
person("Jeroen", "Ooms", role = "ctb"),
person("Andrzej", "Krzemienski", role = "cph",
comment = "optional.hpp"),
person("libuv project contributors", role = "cph",
comment = "libuv library, see src/libuv/AUTHORS file"),
person("Joyent, Inc. and other Node contributors", role = "cph",
comment = "libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file"),
person("Niels", "Provos", role = "cph",
comment = "libuv subcomponent: tree.h"),
person("Internet Systems Consortium, Inc.", role = "cph",
comment = "libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c"),
person("Alexander", "Chemeris", role = "cph",
comment = "libuv subcomponent: stdint-msvc2008.h (from msinttypes)"),
person("Google, Inc.", role = "cph",
comment = "libuv subcomponent: pthread-fixes.c"),
person("Sony Mobile Communcations AB", role = "cph",
comment = "libuv subcomponent: pthread-fixes.c"),
person("Berkeley Software Design Inc.", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Kenneth", "MacKay", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)", role = "cph",
comment = "libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c"),
person("Steve", "Reid", role = "aut",
comment = "SHA-1 implementation"),
person("James", "Brown", role = "aut",
comment = "SHA-1 implementation"),
person("Bob", "Trower", role = "aut",
comment = "base64 implementation"),
person("Alexander", "Peslyak", role = "aut",
comment = "MD5 implementation"),
person("Trantor Standard Systems", role = "cph",
comment = "base64 implementation"),
person("Igor", "Sysoev", role = "cph",
comment = "http-parser")
)
Description: Provides low-level socket and protocol support for handling
HTTP and WebSocket requests directly from within R. It is primarily
intended as a building block for other packages, rather than making it
particularly easy to create complete web applications using httpuv
alone. httpuv is built on top of the libuv and http-parser C
libraries, both of which were developed by Joyent, Inc. (See LICENSE
file for libuv and http-parser license information.)
License: GPL (>= 2) | file LICENSE
URL: https://github.com/rstudio/httpuv
BugReports: https://github.com/rstudio/httpuv/issues
Depends:
R (>= 2.15.1)
Imports:
later (>= 0.8.0),
promises,
R6,
Rcpp (>= 1.0.7),
utils
Suggests:
callr,
curl,
testthat,
websocket
LinkingTo:
later,
Rcpp
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
SystemRequirements: GNU make, zlib
Collate:
'RcppExports.R'
'httpuv.R'
'random_port.R'
'server.R'
'staticServer.R'
'static_paths.R'
'utils.R'