summaryrefslogtreecommitdiff
path: root/torrent-types/torrent-types.cabal
diff options
context:
space:
mode:
authorJames Crayne <jim.crayne@gmail.com>2019-09-28 15:33:33 -0400
committerJoe Crayne <joe@jerkface.net>2020-01-01 19:33:39 -0500
commit51d24d17974235a4c2a0d8a913bbbdc7f4d2c001 (patch)
tree7fdb092ddcc7d857988feb93ee3ec0d7a27acb25 /torrent-types/torrent-types.cabal
parent11987749fc6e6d3e53ea737d46d5ab13a16faeb8 (diff)
Move Data.Torrent to torrent-types library
Diffstat (limited to 'torrent-types/torrent-types.cabal')
-rw-r--r--torrent-types/torrent-types.cabal51
1 files changed, 51 insertions, 0 deletions
diff --git a/torrent-types/torrent-types.cabal b/torrent-types/torrent-types.cabal
new file mode 100644
index 00000000..c5939983
--- /dev/null
+++ b/torrent-types/torrent-types.cabal
@@ -0,0 +1,51 @@
1cabal-version: >=1.10
2-- Initial package description 'torrents.cabal' generated by 'cabal init'.
3-- For further documentation, see http://haskell.org/cabal/users-guide/
4
5name: torrent-types
6version: 0.1.0.0
7-- synopsis:
8-- description:
9-- bug-reports:
10license: BSD3
11license-file: LICENSE
12author: James Crayne
13maintainer: jim.crayne@gmail.com
14-- copyright:
15-- category:
16build-type: Simple
17extra-source-files: CHANGELOG.md
18
19library
20 exposed-modules: Data.Torrent
21 -- other-modules:
22 other-extensions: CPP, NamedFieldPuns, FlexibleInstances, MultiParamTypeClasses, BangPatterns, GeneralizedNewtypeDeriving, StandaloneDeriving, DeriveDataTypeable, DeriveFunctor, DeriveFoldable, DeriveTraversable, TemplateHaskell
23 build-depends:
24 base
25 , deepseq
26 , memory
27 , bytestring
28 , base16-bytestring
29 , base64-bytestring
30 , hashable
31 , containers
32 , text
33 , time
34 , network < 2.7
35 , network-addr
36 , data-default
37 , network-uri
38 , cereal
39 , convertible
40 , pretty
41 , filepath
42 , base32-bytestring
43 , http-types
44 , cryptonite
45 , bencoding
46 , bits
47 , microlens-th
48 cpp-options: -DUSE_lens
49 hs-source-dirs: src
50 default-language: Haskell2010
51