Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions servant-openapi3.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ custom-setup
cabal-doctest >=1.0.6 && <1.1

library
ghc-options: -Wall
ghc-options: -Wall -Wunused-packages
exposed-modules:
Servant.OpenApi
Servant.OpenApi.Test
Expand All @@ -87,16 +87,12 @@ library
, base-compat >=0.10.5 && <0.15
, bytestring >=0.10.8.1 && <0.13
, http-media >=0.7.1.3 && <0.9
, insert-ordered-containers >=0.2.1.0 && <0.3
, lens >=4.17 && <5.4
, servant >=0.17 && <0.21
, servant-server >=0.17 && <0.21
, servant-client-core >=0.17 && <0.21
, singleton-bool >=0.1.4 && <0.2
, openapi3 >=3.2.3 && <3.3
, openapi3 >=3.2.5 && <3.3
, text >=1.2.3.0 && <3
, unordered-containers >=0.2.9.0 && <0.3
, generics-sop >=0.5.1

, hspec
, QuickCheck
Expand Down
4 changes: 2 additions & 2 deletions src/Servant/OpenApi/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import Control.Applicative ((<|>))
import Control.Lens
import Data.Aeson
import Data.Foldable (toList)
import Data.HashMap.Strict.InsOrd (InsOrdHashMap)
import qualified Data.HashMap.Strict.InsOrd as InsOrdHashMap
import Data.HashMap.Strict.InsOrd.Compat (InsOrdHashMap)
import qualified Data.HashMap.Strict.InsOrd.Compat as InsOrdHashMap
import Data.OpenApi hiding (Header, contentType)
import qualified Data.OpenApi as OpenApi
import Data.OpenApi.Declare
Expand Down