Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
snakers4
GitHub Repository: snakers4/silero-vad
Path: blob/master/examples/haskell/package.yaml
1171 views
1
name: example
2
version: 0.1.0.0
3
4
dependencies:
5
- base >= 4.7 && < 5
6
- silero-vad
7
- WAVE
8
- vector
9
10
ghc-options:
11
- -Wall
12
- -Wcompat
13
- -Widentities
14
- -Wincomplete-record-updates
15
- -Wincomplete-uni-patterns
16
- -Wmissing-export-lists
17
- -Wmissing-home-modules
18
- -Wpartial-fields
19
- -Wredundant-constraints
20
21
executables:
22
example-exe:
23
main: Main.hs
24
source-dirs: app
25
ghc-options:
26
- -threaded
27
- -rtsopts
28
- -with-rtsopts=-N
29