-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
78 lines (73 loc) · 2.22 KB
/
package.yaml
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
name: discord-haskell-voice
version: 2.3.1
description: Supplementary library to discord-haskell.
See the project README on GitHub for more information.
<https://github.com/yutotakano/discord-haskell-voice>
synopsis: Voice support for discord-haskell.
github: "yutotakano/discord-haskell-voice"
license: MIT
author: Yuto Takano
maintainer: "[email protected]"
copyright: "2021-2022 Yuto Takano"
category: Network
extra-source-files:
- README.md
- ChangeLog.md
default-extensions: OverloadedStrings
dependencies:
- aeson == 1.5.6.0
- async >= 2.2.3 && < 2.4
- base >= 4.7 && < 5
- binary >= 0.8 && < 0.9
- BoundedChan == 1.0.3.0
- bytestring >= 0.10.12.0 && < 0.11
- conduit == 1.3.4.2
- discord-haskell >= 1.12.0 && <= 1.14.0
- microlens >= 0.4.13.0
- microlens-th >= 0.4.3.10
- mtl == 2.2.2
- network >= 3.1.1.1 && < 3.2
- opus == 0.1.0.0
- process >= 1.6.9.0 && < 1.7
- safe-exceptions >= 0.1.7.1 && < 0.1.8
- saltine >= 0.1.1.1 && < 0.2
- text >= 1.2.4.1 && < 2
- time >= 1.9.3 && <= 1.13
- unliftio >= 0.2.18 && < 0.3
- websockets >= 0.12.7.2 && < 0.12.8
- wuss >= 1.1.18 && <= 1.2
library:
source-dirs: src
# The exposed-module specifies the exact order the modules will appear in the
# generated cabal file, and thus on Haddock. The default is alphabetical, but
# internals should be later.
exposed-modules:
- Discord.Voice
- Discord.Voice.Conduit
- Discord.Internal.Types.VoiceCommon
- Discord.Internal.Types.VoiceUDP
- Discord.Internal.Types.VoiceWebsocket
- Discord.Internal.Voice
- Discord.Internal.Voice.CommonUtils
- Discord.Internal.Voice.UDPLoop
- Discord.Internal.Voice.WebsocketLoop
executables:
join-all-on-start:
main: examples/JoinAllVC.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- discord-haskell-voice
basic-music-bot:
main: examples/BasicMusicBot.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- discord-haskell-voice
- stm-containers == 1.2
- optparse-applicative >= 0.15.1.0 && < 0.17
- stm >= 2.5.0.0 && < 2.5.1