-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
55 lines (47 loc) · 871 Bytes
/
package.yaml
File metadata and controls
55 lines (47 loc) · 871 Bytes
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
name: vcr
version: 0.1.0
synopsis: Record and replay HTTP interactions
category: Testing
maintainer: Simon Hengel <sol@typeful.net>
github: assertible/vcr
ghc-options: -Wall
when:
condition: impl(ghc < 9.4)
ghc-options: -Wno-unticked-promoted-constructors
defaults: sol/ghc2024@v0.1.0
default-extensions:
- BlockArguments
- NoImplicitPrelude
dependencies:
- base == 4.*
- bytestring
- text
- filepath
- directory
- network-uri
- case-insensitive
- http-types
- http-client >= 0.7.19
- yaml
- HUnit
- containers
- async
library:
source-dirs: src
exposed-modules:
- VCR
- VCR.Serialize
- WebMock
- WebMock.Util
tests:
spec:
main: Spec.hs
source-dirs:
- src
- test
dependencies:
- hspec
- mockery
- http-client-tls
- http-conduit
build-tools: hspec-discover