http-barf/http-barf.cabal

61 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-07-12 20:07:40 +03:00
cabal-version: 3.4
name: http-barf
version: 0.1.0.0
synopsis: a library to make http requests without worrying much
-- description:
homepage: https://git.mangoiv.com/mangoiv/http-barf
license: AGPL-3.0-or-later
license-file: LICENSE
author: mangoiv
maintainer: contact@mangoiv.com
-- copyright:
category: Network
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common common-all
ghc-options: -Wall
library
import: common-all
exposed-modules:
Network.HTTP.Barf
Network.HTTP.Barf.Internal
-- other-modules:
-- other-extensions:
build-depends:
, aeson
, base
, bytestring
, http-client
, http-client-tls
, mtl
, vector
hs-source-dirs: src
default-language: GHC2021
default-extensions:
BlockArguments
DataKinds
DerivingVia
OverloadedRecordDot
TypeFamilies
test-suite http-barf-test
import: common-all
default-language: GHC2021
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
, base
, http-barf