mirror of
https://github.com/tmcgilchrist/airship.git
synced 2024-11-20 09:36:47 +03:00
Update bounds for GHC 9.2.2
This commit is contained in:
parent
70e907b646
commit
482c00a3da
@ -12,8 +12,8 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
cabal: ["3.4"]
|
||||
ghc: ["8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7"]
|
||||
cabal: ["3.6"]
|
||||
ghc: ["8.2.2", "8.4.4", "8.6.5", "8.8.4", "8.10.7", "9.2.2"]
|
||||
os:
|
||||
- macos-latest
|
||||
- ubuntu-latest
|
@ -26,8 +26,8 @@ For a slightly more involved example that generates HTML and manages a pool of r
|
||||
|
||||
Airship is copyright © 2015 Helium Systems, Inc., and released to the public under the terms of the MIT license.
|
||||
|
||||
[github-shield]: https://github.com/tmcgilchrist/airship/actions/workflows/ci.yml/badge.svg
|
||||
[github-ci]: https://github.com/tmcgilchrist/airship/actions/workflows/ci.yml
|
||||
[github-shield]: https://github.com/tmcgilchrist/airship/actions/workflows/ci.yaml/badge.svg
|
||||
[github-ci]: https://github.com/tmcgilchrist/airship/actions/workflows/ci.yaml
|
||||
|
||||
[docs-shield]:https://img.shields.io/badge/doc-online-blue.svg
|
||||
[docs]: https://tmcgilchrist.github.io/airship/index.html
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: airship
|
||||
synopsis: A Webmachine-inspired HTTP library
|
||||
homepage: https://github.com/helium/airship/
|
||||
bug-reports: https://github.com/helium/airship/issues
|
||||
homepage: https://github.com/tmcgilchrist/airship/
|
||||
bug-reports: https://github.com/tmcgilchrist/airship/issues
|
||||
version: 0.9.4
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
@ -13,10 +13,10 @@ cabal-version: >=1.10
|
||||
description:
|
||||
A Webmachine-inspired HTTP library based off ideas from the original Erlang project <https://github.com/webmachine/webmachine>
|
||||
.
|
||||
A number of examples can be found in <https://github.com/helium/airship/tree/master/example> illustrating how to build airship based services.
|
||||
A number of examples can be found in <https://github.com/tmcgilchrist/airship/tree/master/example> illustrating how to build airship based services.
|
||||
|
||||
tested-with:
|
||||
GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7
|
||||
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.2.2
|
||||
|
||||
extra-source-files:
|
||||
Changes.md
|
||||
@ -24,7 +24,7 @@ extra-source-files:
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/helium/airship.git
|
||||
location: https://github.com/tmcgilchrist/airship.git
|
||||
|
||||
library
|
||||
default-language: Haskell2010
|
||||
@ -51,10 +51,10 @@ library
|
||||
build-depends:
|
||||
attoparsec
|
||||
, base >=4.7 && <5
|
||||
, base64-bytestring >=1.0 && <1.1
|
||||
, base64-bytestring >=1.0 && <1.3
|
||||
, blaze-builder >=0.3 && <0.5
|
||||
, bytestring
|
||||
, bytestring-trie >=0.2.4 && <0.2.6
|
||||
, bytestring-trie >=0.2.4 && <0.3
|
||||
, case-insensitive
|
||||
, containers
|
||||
, cryptohash >=0.11 && <0.12
|
||||
@ -67,21 +67,21 @@ library
|
||||
, lifted-base >=0.2 && <0.3
|
||||
, microlens
|
||||
, mime-types >=0.1.0 && <0.1.1
|
||||
, mmorph >=1.0 && <1.2
|
||||
, mmorph >=1.0 && <1.3
|
||||
, monad-control >=1.0
|
||||
, mtl
|
||||
, network
|
||||
, old-locale
|
||||
, random
|
||||
, semigroups >=0.18 && <0.19
|
||||
, semigroups >=0.18 && <0.21
|
||||
, text
|
||||
, time
|
||||
, transformers
|
||||
, transformers-base
|
||||
, unix >=2.7 && <2.8
|
||||
, unordered-containers
|
||||
, wai >=3.0.3.0 && <3.2.2
|
||||
, wai-extra >=3.0 && <3.0.26
|
||||
, wai >=3.0.3.0 && <3.3
|
||||
, wai-extra >=3.0 && <3.2
|
||||
|
||||
-- https://github.com/yesodweb/wai/pull/726
|
||||
test-suite unit
|
||||
@ -96,7 +96,7 @@ test-suite unit
|
||||
, tasty >=0.10.1 && <1.3
|
||||
, tasty-hunit >=0.9.1 && <0.11
|
||||
, tasty-quickcheck >=0.8.3 && <0.11
|
||||
, text >=1.2 && <1.3
|
||||
, text >=1.2 && <2.0
|
||||
, transformers
|
||||
, wai >=3.0 && <3.3
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user