* v0.8.1 * Add failing tests for `Headers` There's currently a bug with `Headers`: if a header is created with uppercase characters, it can never be found. The problem is that we only look for lowercase characters in the `Lookup` instance for `Headers`. * Convert `Headers` to use `CaseInsensitiveString` In an effort to be more true to HTTP, we make the header keys case-insensitive. This fixes the issue of looking up a header where the casing is different, Since `CaseInsensitiveString`s compare in a way that ignore casing. The API for consumers for `Headers` stays the same, but we get more correct code. A win for all!
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "purescript-httpure",
|
|
"homepage": "https://github.com/cprussin/purescript-httpure",
|
|
"description": "A web framework written in PureScript.",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cprussin/purescript-httpure"
|
|
},
|
|
"ignore": [
|
|
"**/.*",
|
|
"docs",
|
|
"out",
|
|
"test",
|
|
"Makefile",
|
|
"*.json",
|
|
"*.md"
|
|
],
|
|
"dependencies": {
|
|
"purescript-aff": "^5.0.0",
|
|
"purescript-arrays": "^5.2.0",
|
|
"purescript-bifunctors": "^4.0.0",
|
|
"purescript-console": "^4.2.0",
|
|
"purescript-control": "^4.1.0",
|
|
"purescript-effect": "^2.0.1",
|
|
"purescript-either": "^4.1.1",
|
|
"purescript-exceptions": "^4.0.0",
|
|
"purescript-foldable-traversable": "^4.0.0",
|
|
"purescript-foreign": "^5.0.0",
|
|
"purescript-lists": "^5.4.0",
|
|
"purescript-maybe": "^4.0.1",
|
|
"purescript-newtype": "^3.0.0",
|
|
"purescript-node-buffer": "^5.0.0",
|
|
"purescript-node-child-process": "^5.0.0",
|
|
"purescript-node-fs": "^5.0.0",
|
|
"purescript-node-fs-aff": "^6.0.0",
|
|
"purescript-node-http": "^5.0.0",
|
|
"purescript-node-streams": "^4.0.0",
|
|
"purescript-nullable": "^4.1.1",
|
|
"purescript-options": "^4.0.0",
|
|
"purescript-ordered-collections": "^1.6.1",
|
|
"purescript-prelude": "^4.0.1",
|
|
"purescript-psci-support": "^4.0.0",
|
|
"purescript-refs": "^4.1.0",
|
|
"purescript-spec": "^3.0.0",
|
|
"purescript-strings": "^4.0.0",
|
|
"purescript-tuples": "^5.1.0",
|
|
"purescript-type-equality": "^3.0.0",
|
|
"purescript-unsafe-coerce": "^4.0.0"
|
|
}
|
|
}
|