mirror of
https://github.com/typeable/wai.git
synced 2025-01-05 21:14:26 +03:00
Relax some Warp upper bounds
This commit is contained in:
parent
009e3ea80d
commit
097e900709
@ -20,7 +20,6 @@ Library
|
||||
, conduit >= 0.5 && < 1.1
|
||||
, http-types >= 0.7
|
||||
, wai >= 2.0 && < 2.1
|
||||
, warp >= 2.0 && < 2.1
|
||||
, transformers
|
||||
|
||||
ghc-options: -Wall
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: wai-handler-launch
|
||||
Version: 2.0.0
|
||||
Version: 2.0.1
|
||||
Synopsis: Launch a web app in the default browser.
|
||||
Description: This handles cross-platform launching and inserts Javascript code to ping the server. When the server no longer receives pings, it shuts down.
|
||||
License: MIT
|
||||
@ -14,7 +14,7 @@ Library
|
||||
Exposed-modules: Network.Wai.Handler.Launch
|
||||
build-depends: base >= 4 && < 5
|
||||
, wai >= 2.0 && < 2.1
|
||||
, warp >= 2.0 && < 2.1
|
||||
, warp >= 2.0 && < 2.2
|
||||
, http-types >= 0.7
|
||||
, transformers >= 0.2.2 && < 0.4
|
||||
, bytestring >= 0.9.1.4
|
||||
|
@ -78,7 +78,7 @@ actual server. For this purpose, we use the simple server provided by
|
||||
> state <- newMVar newServerState
|
||||
> Warp.runSettings Warp.defaultSettings
|
||||
> { Warp.settingsPort = 9160
|
||||
> , Warp.settingsIntercept = WaiWS.intercept (application state)
|
||||
> , Warp.settingsIntercept = return . WaiWS.intercept (application state)
|
||||
> } staticApp
|
||||
|
||||
> staticApp :: Network.Wai.Application
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: wai-websockets
|
||||
Version: 2.0.0.1
|
||||
Version: 2.0.1
|
||||
Synopsis: Provide a bridge betweeen WAI and the websockets package.
|
||||
License: MIT
|
||||
License-file: LICENSE
|
||||
@ -26,7 +26,7 @@ Library
|
||||
, network >= 2.2.1.5
|
||||
, transformers >= 0.2 && < 0.4
|
||||
, websockets >= 0.8
|
||||
, warp >= 2.0 && < 2.1
|
||||
, warp >= 2.0 && < 2.2
|
||||
, io-streams >= 1.1 && < 1.2
|
||||
Exposed-modules: Network.Wai.Handler.WebSockets
|
||||
ghc-options: -Wall
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: warp-static
|
||||
Version: 2.0.0.1
|
||||
Version: 2.0.1
|
||||
Synopsis: Static file server based on Warp and wai-app-static
|
||||
Homepage: http://github.com/yesodweb/wai
|
||||
License: MIT
|
||||
@ -15,7 +15,7 @@ Description: Serve up static files by running the warp executable. Based
|
||||
Executable warp
|
||||
Main-is: warp.hs
|
||||
Build-depends: base >= 4 && < 5
|
||||
, warp >= 2.0 && < 2.1
|
||||
, warp >= 2.0 && < 2.2
|
||||
, wai-app-static >= 2.0 && < 2.1
|
||||
, wai-extra >= 2.0 && < 2.1
|
||||
, cmdargs >= 0.6.7
|
||||
|
@ -1,5 +1,5 @@
|
||||
Name: warp-tls
|
||||
Version: 2.0.2
|
||||
Version: 2.0.3
|
||||
Synopsis: HTTP over SSL/TLS support for Warp via the TLS package
|
||||
License: MIT
|
||||
License-file: LICENSE
|
||||
@ -16,7 +16,7 @@ Library
|
||||
Build-Depends: base >= 4 && < 5
|
||||
, bytestring >= 0.9
|
||||
, wai >= 2.0 && < 2.1
|
||||
, warp >= 2.0.2 && < 2.1
|
||||
, warp >= 2.0.2 && < 2.2
|
||||
, transformers >= 0.2
|
||||
, conduit >= 0.5 && < 1.1
|
||||
, network-conduit >= 0.6 && < 1.1
|
||||
|
Loading…
Reference in New Issue
Block a user