summaryrefslogtreecommitdiff
path: root/torrent-types/torrent-types.cabal
diff options
context:
space:
mode:
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