This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
proto-route.cabal
73 lines (68 loc) · 2.2 KB
/
proto-route.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: proto-route
version: 0.0.0
description: Remote testing tool for protobuf endpoints
synopsis: Remote testing tool for protobuf endpoints
homepage: https://github.com/holmusk/proto-route
bug-reports: https://github.com/holmusk/proto-route/issues
license: MIT
license-file: LICENSE
author: Holmusk
maintainer: [email protected]
copyright: 2018 Holmusk
category: Protobuf, Network
build-type: Custom
extra-doc-files: README.md
, CHANGELOG.md
cabal-version: 1.24
tested-with: GHC == 8.4.3
extra-source-files: proto/*.proto
source-repository head
type: git
location: https://github.com/holmusk/proto-route.git
custom-setup
setup-depends:
Cabal
, base
, proto-lens-protoc
, proto-lens-setup
library
hs-source-dirs: src
exposed-modules: ProtoExports
ProtoRoute
ProtoRoute.Ghcid
ProtoRoute.Message
Proto.Protobuf2
Proto.Protobuf2_Fields
Tui
ghc-options: -Wall
build-depends: base >=4.7 && <5
, brick
, containers
, directory
, ghcid
, linear
, protobuf
, proto-lens
, proto-lens-protoc
, text
, these
, vty
default-language: Haskell2010
executable proto-route
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, brick
, containers
, directory
, ghcid
, linear
, protobuf
, proto-lens
, proto-lens-protoc
, proto-route
, text
, these
, vty
default-language: Haskell2010