William Cheng 0820edee5d
Add bytestring package to dependencies of generated haskell code (#19101)
* Add bytestring package to dependencies of generated haskell code

This broke in https://github.com/OpenAPITools/openapi-generator/pull/18047
where tvh introduced an import of Data.ByteString.Lazy. The added
bytestring package was available in some but not all cases.

* update workflow to test haskell servant ping

* update samples

---------

Co-authored-by: Bastian Senst <senst@cp-med.com>
2024-07-07 22:06:20 +08:00

43 lines
1.3 KiB
Plaintext

name: ping-test
version: 0.1.0.0
synopsis: Auto-generated API bindings for ping-test
description: Please see README.md
homepage: https://openapi-generator.tech
author: Author Name Here
maintainer: author.name@email.com
copyright: YEAR - AUTHOR
category: Web
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: lib
exposed-modules: PingTest.API
, PingTest.Types
ghc-options: -Wall
build-depends: base
, aeson
, text
, containers
, exceptions
, network-uri
, servant
, http-api-data
, servant
, servant-client
, servant-client-core
, servant-server
, servant
, wai
, warp
, transformers
, mtl
, time
, http-client
, http-client-tls
, http-types
, swagger2
, uuid
, bytestring
default-language: Haskell2010