| ... | ... | @@ -96,7 +96,7 @@ pub const Request = struct { |
| 96 | 96 | }; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | | pub const ParseError = Allocator.Error || error{ |
| 99 | pub const ParseError = error{ |
| 100 | 100 | UnknownHttpMethod, |
| 101 | 101 | HttpHeadersInvalid, |
| 102 | 102 | HttpHeaderContinuationsUnsupported, |
| ... | ... | @@ -612,7 +612,6 @@ const http = std.http; |
| 612 | 612 | const mem = std.mem; |
| 613 | 613 | const net = std.net; |
| 614 | 614 | const Uri = std.Uri; |
| 615 | | const Allocator = mem.Allocator; |
| 616 | 615 | const assert = std.debug.assert; |
| 617 | 616 | |
| 618 | 617 | const Server = @This(); |