-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaudiocate.cabal
146 lines (136 loc) · 3.42 KB
/
audiocate.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
cabal-version: 3.0
name: audiocate
version: 0.2.0.0
synopsis:
Audio encoding authentication library for verifying audio as being from a trusted source
-- A longer description of the package.
-- description:
homepage: eldr-io.github.io
-- A URL where users can report bugs.
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: eldr.io
maintainer: io.eldr@proton.me
-- A copyright notice.
-- copyright:
category: Sound
extra-source-files:
CHANGELOG.md
README.md
library
exposed-modules:
Audiocate
, Data.Audio.Wave
, Stego.Common
, Stego.Encode.LSB
, Stego.Encode.Encoder
, Stego.Decode.LSB
, Stego.Decode.Decoder
, Command.Cmd
, Command.DecodeCmd
, Command.EncodeCmd
, Command.EncodeStreamCmd
, Command.DecodeStreamCmd
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
build-depends:
base >=4.7 && <5
, HCodecs
, array
, bits-show
, split
, stm
, mtl
, bytestring
, time
, text
, OTP
, conduit
, conduit-audio
, conduit-audio-sndfile
, hsndfile
, hsndfile-vector
, resourcet
, transformers
, vector
, storablevector
hs-source-dirs: lib
default-language: GHC2021
executable audiocate
main-is: Main.hs
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, audiocate
, optparse-applicative
hs-source-dirs: app
default-language: GHC2021
executable audiocate-gui
hs-source-dirs: gui
c-sources: csrc/resources.c
main-is: Main.hs
ghc-options: -Wall -fno-warn-unused-do-bind -threaded -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, audiocate
, time
, gi-glib
, gi-gtk
, gi-adwaita
, gi-gobject
, gi-gio
, haskell-gi-base
, directory
, text
, mtl
, stm
other-modules:
MainWindow
, View.EncodeView
, View.DecodeView
, View.LoadView
, AppState
default-language: GHC2021
default-extensions:
OverloadedLabels
, OverloadedStrings
, OverloadedRecordDot
test-suite audiocate-test
default-language: GHC2021
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules:
EncodeSpec
, EncodeCmdSpec
, EncodeStreamCmdSpec
, DecodeSpec
, DecodeCmdSpec
, DecodeStreamCmdSpec
, StegoSpec
, RealTimeSpec
ghc-options:
-O -threaded -rtsopts -with-rtsopts=-N
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
base >=4.7 && <5
, audiocate
, text
, mtl
, hspec
, hspec-discover
, time
, stm
benchmark bench
default-language: GHC2021
hs-source-dirs: test-benchmark
main-is: Benchmark.hs
type: exitcode-stdio-1.0
build-depends:
base
, audiocate
, tasty-bench
ghc-options: "-with-rtsopts=-A32m"
if impl(ghc >= 8.6)
ghc-options: -fproc-alignment=64