-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.yaml
More file actions
110 lines (105 loc) · 2 KB
/
package.yaml
File metadata and controls
110 lines (105 loc) · 2 KB
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
name: ryvm
version: 0.2.0.0
synopsis: Rank You Very Much. Like Google, but for your files. Formally verified. Properly tested.
description: |
Like Google, but a Unix-y tool for your local storage.
homepage: https://github.com/someodd/ryvm
bug-reports: https://github.com/someodd/ryvm/issues
license: GPL-3.0-only
license-file: LICENSE
author: someodd
maintainer: [email protected]
category: Network
extra-source-files:
- README.md
- CHANGELOG.md
tested-with: GHC==9.6.3
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
dependencies:
- base
- text
- filepath-bytestring
- liquidhaskell
- unix
- fast-logger
- fsnotify
- tomland
- parsec
- data-default
- word-wrap
- split
- fuzzy-dates
- hourglass
- bytestring
- containers
- filepattern
- hashmap
- directory
- unordered-containers
- filepath
- optparse-applicative
- mtl
- commonmark
- frontmatter
- ansi-wl-pprint
- commonmark
- attoparsec
- vector
- time
- hashable
- fuzzy-dates
- hourglass
- raw-strings-qq
- aeson
- network-uri
- prettyprinter
- commonmark-extensions
- neat-interpolation
- yaml
- edit-distance
- safe
- mime-types
- regex-tdfa
- regex-compat
library:
source-dirs: src
default-extensions:
- OverloadedStrings
- DeriveGeneric
- DeriveAnyClass
- OverloadedRecordDot
- DuplicateRecordFields
default-language: GHC2021
executables:
ryvm:
main: Main.hs
source-dirs: app
dependencies:
- ryvm
autogen-modules:
- Paths_ryvm
other-modules:
- Paths_ryvm
default-extensions:
- OverloadedStrings
- DeriveGeneric
- DeriveAnyClass
- OverloadedRecordDot
default-language: GHC2021
tests:
ryvm-test:
main: Spec.hs
source-dirs: test
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
- ryvm
- QuickCheck
- text
- temporary
- doctest
default-language: GHC2021