mirror of
https://github.com/monadicsystems/okapi.git
synced 2024-11-25 05:36:21 +03:00
82 lines
1.7 KiB
Plaintext
82 lines
1.7 KiB
Plaintext
cabal-version: 3.6
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.34.4.
|
|
--
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
name: okapi
|
|
version: 0.2.0.0
|
|
synopsis: A micro web framework based on monadic parsing
|
|
description: Please see the README on GitHub at <https://github.com/monadicsystems/okapi#readme>
|
|
category: Web
|
|
homepage: https://github.com/monadicsystems/okapi#readme
|
|
bug-reports: https://github.com/monadicsystems/okapi/issues
|
|
author: Monadic Systems LLC
|
|
maintainer: tech@monadic.systems
|
|
copyright: 2022 Monadic Systems LLC
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
build-type: Simple
|
|
extra-source-files:
|
|
README.md
|
|
ChangeLog.md
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/monadicsystems/okapi
|
|
|
|
library
|
|
exposed-modules:
|
|
Okapi
|
|
Okapi.Middleware
|
|
Okapi.Route.Pattern
|
|
Okapi.Headers
|
|
Okapi.Query
|
|
Okapi.Body
|
|
Okapi.Secret
|
|
Okapi.App
|
|
Okapi.Route
|
|
Okapi.Response
|
|
other-modules:
|
|
Paths_okapi
|
|
hs-source-dirs:
|
|
src
|
|
build-depends:
|
|
aeson
|
|
, base >=4.7 && <5
|
|
, base64
|
|
, binary
|
|
, bytestring
|
|
, case-insensitive
|
|
, containers
|
|
, cookie
|
|
, extra
|
|
, http-api-data
|
|
, http-types
|
|
, natural-transformation
|
|
, network
|
|
, pretty-simple
|
|
, recursion-schemes
|
|
, regex-tdfa
|
|
, text
|
|
, vault
|
|
, wai
|
|
, wai-extra
|
|
, wai-logger
|
|
, warp
|
|
default-language: Haskell2010
|
|
|
|
test-suite okapi-test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Spec.hs
|
|
other-modules:
|
|
Paths_okapi
|
|
hs-source-dirs:
|
|
test
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >=4.7 && <5
|
|
, hspec
|
|
, text
|
|
default-language: Haskell2010
|