-
Notifications
You must be signed in to change notification settings - Fork 0
/
gemini-server.cabal
42 lines (39 loc) · 1.58 KB
/
gemini-server.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
cabal-version: 2.2
name: gemini-server
version: 0.3.0.0
synopsis: A lightweight server for the Gemini protocol
description:
This package contains a server for the
Gemini (<https://gemini.circumlunar.space/>) protocol.
For a higher level interface, see the gemini-router package.
homepage: https://sr.ht/~fgaz/haskell-gemini/
bug-reports: https://todo.sr.ht/~fgaz/haskell-gemini
license: BSD-3-Clause
license-file: LICENSE
author: Francesco Gazzetta
maintainer: Francesco Gazzetta <[email protected]>
copyright: © 2020 Francesco Gazzetta and contributors
category: Network, Gemini
extra-source-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://git.sr.ht/~fgaz/gemini-server
library
exposed-modules: Network.Gemini.Server
build-depends: base ^>=4.12
|| ^>=4.13
|| ^>=4.14
|| ^>=4.15
|| ^>=4.16
|| ^>=4.17
, network ^>=3.1.1.1
, network-run ^>=0.2.3
, network-uri ^>=2.6.3.0 || ^>=2.7.0.0
, text ^>=1.2.3.2 || ^>=2.0
, utf8-string ^>=1.0.1.1
, bytestring ^>=0.10.10.0
|| ^>=0.11.3.0
, hslogger ^>=1.3.1.0
, HsOpenSSL ^>=0.11.6
ghc-options: -Wall
default-language: Haskell2010