-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlarge-hashable.cabal
122 lines (118 loc) · 4.74 KB
/
large-hashable.cabal
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
122
name: large-hashable
version: 0.1.1.0
synopsis: Efficiently hash (large) Haskell values
description: Please see README.md
homepage: https://github.com/factisresearch/large-hashable
license: BSD3
license-file: LICENSE
author: Stefan Wehr, Lukas Epple
maintainer: Stefan Wehr
copyright: 2015 - 2017 factis research GmbH, 2018 - 2023 medilyse GmbH, 2024 MEQO GmbH
category: Web
build-type: Simple
cabal-version: 2.0
extra-source-files:
cbits/md5.h
README.md
ChangeLog
default.nix
stack.yaml
test/bigfile.txt
library
hs-source-dirs: src
include-dirs: cbits
exposed-modules: Data.LargeHashable
, Data.LargeHashable.Class
, Data.LargeHashable.MD5
, Data.LargeHashable.Intern
, Data.LargeHashable.LargeWord
, Data.LargeHashable.TH
other-modules: Data.LargeHashable.Endianness
build-depends: aeson
, base >= 4.8 && < 5
, base16-bytestring
, bytes
, bytestring
, containers
, cryptonite
, memory
, scientific
, strict
, template-haskell
, text
, time
, transformers
, unordered-containers
, vector
, void
build-tool-depends: cpphs:cpphs
default-language: Haskell2010
ghc-options: -optc -O3 -W -fwarn-unused-imports -fwarn-unused-binds
-fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
-fno-warn-name-shadowing
-fwarn-missing-signatures -O2
benchmark large-hashable-benchmark
type: exitcode-stdio-1.0
hs-source-dirs: benchmark
main-is: Main.hs
other-modules: Data.LargeHashable.Benchmarks.CryptoHash
, Data.LargeHashable.Benchmarks.Main
, Data.LargeHashable.Benchmarks.Serial
, Data.LargeHashable.Benchmarks.Text
ghc-options: -optc -O3 -threaded -rtsopts -with-rtsopts=-N
-W -fwarn-unused-imports -fwarn-unused-binds
-fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
-pgmP "cpphs --cpp" -rtsopts -threaded -funbox-strict-fields
-fwarn-missing-signatures -fno-warn-name-shadowing -O2
build-depends: base >= 4.8 && < 5
, base16-bytestring
, criterion
, large-hashable
, safecopy
, text
, deepseq
, cryptohash
, bytestring
, cereal
, byteable
, transformers
, bytes
build-tool-depends: cpphs:cpphs
default-language: Haskell2010
test-suite large-hashable-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: aeson
, HTF
, QuickCheck
, base >= 4.8 && < 5
, bytes
, bytestring
, containers
, hashable
, large-hashable
, scientific
, strict
, text
, time
, unordered-containers
, vector
, inspection-testing
ghc-options: -optc -O3 -threaded -rtsopts -with-rtsopts=-N
-W -fwarn-unused-imports -fwarn-unused-binds
-fwarn-unused-matches -fwarn-unused-do-bind -fwarn-wrong-do-bind
-pgmP "cpphs --cpp" -rtsopts -threaded -funbox-strict-fields
-fwarn-missing-signatures -fno-warn-name-shadowing
build-tool-depends: cpphs:cpphs
default-language: Haskell2010
other-modules: Data.LargeHashable.Tests.Class
, Data.LargeHashable.Tests.Helper
, Data.LargeHashable.Tests.Inspection
, Data.LargeHashable.Tests.TH
, Data.LargeHashable.Tests.LargeWord
, Data.LargeHashable.Tests.MD5
, Data.LargeHashable.Tests.Stable
source-repository head
type: git
location: https://github.com/factisresearch/large-hashable