commit | 931c341ec4799a4a651fcc5b88acc0a97c915ac7 | [log] [tgz] |
---|---|---|
author | Devon Carew <devoncarew@google.com> | Mon May 16 14:05:11 2022 -0700 |
committer | GitHub <noreply@github.com> | Mon May 16 14:05:11 2022 -0700 |
tree | ce02a1b8809ae493926d04c85707c12300658efd | |
parent | cfd6b6b047d176dd1429f6894cf9de7787684f71 [diff] | |
parent | 6667fb7095c140ea1929b4d0d78753751f5123f5 [diff] |
Merge pull request #53 from sigurdm/publish_4_0_1 Prepare for publishing 4.0.1
http_parser
is a platform-independent package for parsing and serializing various HTTP-related formats. It's designed to be usable on both the browser and the server, and thus avoids referencing any types from dart:io
or dart:html
. It includes:
Support for parsing and formatting dates according to HTTP/1.1, the HTTP/1.1 standard.
A MediaType
class that represents an HTTP media type, as used in Accept
and Content-Type
headers. This class supports both parsing and formatting media types according to HTTP/1.1.
A WebSocketChannel
class that provides a StreamChannel
interface for both the client and server sides of the WebSocket protocol independently of any specific server implementation.