mirror of
https://github.com/monadicsystems/okapi.git
synced 2024-11-22 08:54:32 +03:00
83 lines
1.8 KiB
Plaintext
83 lines
1.8 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
|
|
Tree
|
|
-- Okapi.DSL
|
|
-- Okapi.DSL.Alternative
|
|
-- Okapi.DSL.Applicative
|
|
-- Okapi.Parser.Body
|
|
-- Okapi.Parser.Headers
|
|
Okapi.Parser.Path
|
|
-- Okapi.Parser.Query
|
|
-- Okapi.Parser.Request
|
|
-- Okapi.Parser.Path
|
|
Okapi.NewDSL
|
|
Okapi.Pattern
|
|
Okapi.Tree
|
|
Okapi.Route
|
|
other-modules:
|
|
Paths_okapi
|
|
hs-source-dirs:
|
|
src
|
|
build-depends:
|
|
aeson
|
|
, base >=4.7 && <5
|
|
, base64
|
|
, bytestring
|
|
, case-insensitive
|
|
, containers
|
|
, cookie
|
|
, extra
|
|
, http-api-data
|
|
, http-types
|
|
, natural-transformation
|
|
, network
|
|
, pretty-simple
|
|
, text
|
|
, vault
|
|
, wai
|
|
-- , wai-extra
|
|
, 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
|