summaryrefslogtreecommitdiff
path: root/tox-crypto/tox-crypto.cabal
diff options
context:
space:
mode:
authorJames Crayne <jim.crayne@gmail.com>2019-09-28 13:43:29 -0400
committerJoe Crayne <joe@jerkface.net>2020-01-01 19:27:53 -0500
commit11987749fc6e6d3e53ea737d46d5ab13a16faeb8 (patch)
tree5716463275c2d3e902889db619908ded2a73971c /tox-crypto/tox-crypto.cabal
parentadd2c76bced51fde5e9917e7449ef52be70faf87 (diff)
Factor out some new libraries
word64-map: Data.Word64Map network-addr: Network.Address tox-crypto: Crypto.Tox lifted-concurrent: Control.Concurrent.Lifted.Instrument Control.Concurrent.Async.Lifted.Instrument psq-wrap: Data.Wrapper.PSQInt Data.Wrapper.PSQ minmax-psq: Data.MinMaxPSQ tasks: Control.Concurrent.Tasks kad: Network.Kademlia Network.Kademlia.Bootstrap Network.Kademlia.Routing Network.Kademlia.CommonAPI Network.Kademlia.Persistence Network.Kademlia.Search
Diffstat (limited to 'tox-crypto/tox-crypto.cabal')
-rw-r--r--tox-crypto/tox-crypto.cabal59
1 files changed, 59 insertions, 0 deletions
diff --git a/tox-crypto/tox-crypto.cabal b/tox-crypto/tox-crypto.cabal
new file mode 100644
index 00000000..9737e5d9
--- /dev/null
+++ b/tox-crypto/tox-crypto.cabal
@@ -0,0 +1,59 @@
1-- Initial tox-crypto.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: tox-crypto
5version: 0.1.0.0
6-- synopsis:
7-- description:
8license: BSD3
9license-file: LICENSE
10author: James Crayne
11maintainer: jim.crayne@gmail.com
12-- copyright:
13-- category:
14build-type: Simple
15extra-source-files: CHANGELOG.md
16cabal-version: >=1.10
17
18library
19 exposed-modules: Crypto.Tox
20 -- other-modules:
21 other-extensions: CPP
22 , GeneralizedNewtypeDeriving
23 , ScopedTypeVariables
24 , KindSignatures
25 , DeriveDataTypeable
26 , DeriveFunctor
27 , DeriveGeneric
28 , DeriveTraversable
29 , TypeOperators
30 , MagicHash
31 , UnboxedTuples
32 , BangPatterns
33 , MultiParamTypeClasses
34 , ConstraintKinds
35 , Rank2Types
36 , NamedFieldPuns
37 , PatternSynonyms
38 , FlexibleContexts
39 build-depends:
40 base
41 , cpu
42 , memory
43 , base64-bytestring
44 , base16-bytestring
45 , cereal
46 , word64-map
47 , contravariant
48 , rank2classes
49 , network
50 , bytestring
51 , stm
52 , ghc-prim
53 , time
54 , cryptonite
55 , dput-hslogger
56 , hashable
57 , minmax-psq
58 hs-source-dirs: src
59 default-language: Haskell2010