-
Notifications
You must be signed in to change notification settings - Fork 10
/
wuss.cabal
58 lines (50 loc) · 1.52 KB
/
wuss.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
cabal-version: 2.2
name: wuss
version: 2.0.2.2
synopsis: Secure WebSocket (WSS) clients
description:
Wuss is a library that lets you easily create secure WebSocket clients over
the WSS protocol. It is a small addition to
<https://hackage.haskell.org/package/websockets the websockets package> and
is adapted from existing solutions by
<https://gist.github.com/jaspervdj/7198388 @jaspervdj>,
<https://gist.github.com/mpickering/f1b7ba3190a4bb5884f3 @mpickering>, and
<https://gist.github.com/elfenlaid/7b5c28065e67e4cf0767 @elfenlaid>.
build-type: Simple
category: Network
extra-doc-files:
CHANGELOG.md
README.md
license-file: LICENSE.txt
license: MIT
maintainer: Taylor Fausak
source-repository head
location: https://github.com/tfausak/wuss
type: git
flag pedantic
default: False
manual: True
common library
build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0
build-depends:
bytestring ^>=0.11.4.0 || ^>=0.12.0.2,
crypton-connection ^>=0.3.2 || ^>=0.4.0,
data-default ^>=0.7.0 || ^>=0.8.0.0,
exceptions ^>=0.10.7,
network ^>=3.1.4.0 || ^>=3.2.0.0,
websockets ^>=0.12.7.3 || ^>=0.13.0.0,
default-language: Haskell2010
ghc-options:
-Weverything
-Wno-missing-exported-signatures
-Wno-missing-kind-signatures
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
-Wno-unsafe
if flag(pedantic)
ghc-options: -Werror
library
import: library
-- cabal-gild: discover source/library
exposed-modules: Wuss
hs-source-dirs: source/library