commit | 38a1b04aa7aa94d8fe2316dd94dc3fe2072c4799 | [log] [tgz] |
---|---|---|
author | Jacob MacDonald <jakemac@google.com> | Tue Nov 03 07:17:29 2020 -0800 |
committer | GitHub <noreply@github.com> | Tue Nov 03 07:17:29 2020 -0800 |
tree | 77e0792a1c289ad69248138532dc9b65c3be9fc1 | |
parent | 5dd4d16693242049dfb43b5efa429fedbf932e98 [diff] | |
parent | e0155a873aa059fd772f239cd82bc62602a8cf33 [diff] |
Merge pull request #37 from dart-lang/bump_sdk Support Dart 2.11
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.