1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
Index: b/pantry.cabal
===================================================================
--- a/pantry.cabal
+++ b/pantry.cabal
@@ -39,6 +39,7 @@ library
Pantry
Pantry.SQLite
Pantry.Internal.Stackage
+ Pantry.SHA256
other-modules:
Hackage.Security.Client.Repository.HttpLib.HttpClient
Pantry.Archive
@@ -48,10 +49,15 @@ library
Pantry.Storage
Pantry.Casa
Pantry.Tree
- reexported-modules:
- Pantry.SHA256
+ Pantry.HPack
+ Pantry.Internal
+ Pantry.Types
+ Paths_pantry
+ autogen-modules:
+ Paths_pantry
hs-source-dirs:
src/
+ int/
ghc-options: -fwrite-ide-info -hiedir=.hie -Wall
build-depends:
Cabal >=3 && <3.11
@@ -78,7 +84,6 @@ library
, http-conduit
, http-download >=0.2.1.0
, http-types
- , internal
, memory
, mtl
, network-uri
@@ -119,74 +124,6 @@ library
hs-source-dirs:
src/unix/
-library internal
- exposed-modules:
- Pantry.HPack
- Pantry.Internal
- Pantry.SHA256
- Pantry.Types
- other-modules:
- Paths_pantry
- autogen-modules:
- Paths_pantry
- hs-source-dirs:
- int/
- ghc-options: -fwrite-ide-info -hiedir=.hie -Wall
- build-depends:
- Cabal >=3 && <3.11
- , aeson
- , aeson-warning-parser >=0.1.1
- , ansi-terminal
- , base >=4.13 && <5
- , bytestring
- , casa-client >=0.0.2
- , casa-types
- , companion
- , conduit
- , conduit-extra
- , containers
- , crypton
- , crypton-conduit
- , digest
- , filelock
- , generic-deriving
- , hackage-security
- , hpack >=0.35.3
- , http-client
- , http-client-tls >=0.3.6.2
- , http-conduit
- , http-download >=0.2.1.0
- , http-types
- , memory
- , mtl
- , network-uri
- , path
- , path-io
- , persistent
- , persistent-sqlite >=2.9.3
- , persistent-template
- , primitive
- , resourcet
- , rio
- , rio-orphans
- , rio-prettyprint >=0.1.7.0
- , static-bytes
- , tar-conduit >=0.4.1
- , text
- , text-metrics
- , time
- , transformers
- , unix-compat
- , unliftio
- , unordered-containers
- , vector
- , yaml
- , zip-archive
- default-language: Haskell2010
- if impl(ghc >= 9.4.5) && os(windows)
- build-depends:
- network >=3.1.2.9
-
executable test-pretty-exceptions
main-is: Main.hs
other-modules:
@@ -321,7 +258,6 @@ test-suite spec
, http-conduit
, http-download >=0.2.1.0
, http-types
- , internal
, memory
, mtl
, network-uri
|