Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

ghc-servant-devel-0.20.3.0-2.9 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: ghc-servant-devel Distribution: openSUSE Tumbleweed
Version: 0.20.3.0 Vendor: openSUSE
Release: 2.9 Build date: Fri Jul 18 16:39:28 2025
Group: Unspecified Build host: reproducible
Size: 3518527 Source RPM: ghc-servant-0.20.3.0-2.9.src.rpm
Packager: https://bugs.opensuse.org
Url: https://hackage.haskell.org/package/servant
Summary: Haskell servant library development files
This package provides the Haskell servant library development files.

Provides

Requires

License

BSD-3-Clause

Changelog

* Fri Jul 18 2025 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.3.0 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Wed Jun 04 2025 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.3.0.
    0.20.3.0
    - ---
    [#]## Significant changes
    - Remove -XStrictData from servant{,-server}'s cabal files [#1780](https://github.com/haskell-servant/servant/issues/1780) [#1781](https://github.com/haskell-servant/servant/pull/1781)
      The addition of -XStrictData to servant.cabal and servant-server.cabal reduced the laziness
      of routing, which would trigger unimplemented endpoints using `error` or `undefined`,
      despite the fact that these endpoints themselves were not queried.
    [#]## Other changes
    - Server-sent events (SSE) for client-side [#1811](https://github.com/haskell-servant/servant/issues/1811)
      Implement Server-sent events (SSE) for the Servant client using a new
      combinator "ServerSentEvents". The raw event messages, accumulated events and
      JSON-processed events can be exposed.
    - Integrate MultiVerb [#1766](https://github.com/haskell-servant/servant/pull/1766) [#1804](https://github.com/haskell-servant/servant/pull/1804)
      Expose MultiVerb, a more ergonomic way of defining endpoints that return
      many kinds of responses. Read the cookbook https://docs.servant.dev/en/master/cookbook/multiverb/MultiVerb.html
    - Exported addQueryParam [#1232](https://github.com/haskell-servant/servant/issues/1232) [#1785](https://github.com/haskell-servant/servant/pull/1785)
      `addQueryParams` is required to define custom `HasLink` instances which actually manipulate the
      generated query params. This function was not exported earlier and now it is.
    - Add Host API combinator [#1800](https://github.com/haskell-servant/servant/pull/1800)
      Adding a Host combinator allows servant users to select APIs according
      to the Host header provided by clients.
    - Use newtype deriving for ToHttpApiData in the type Range [#1813](https://github.com/haskell-servant/servant/pull/1813)
    - Add public re-export of renderCurlBasePath lens [#1706](https://github.com/haskell-servant/servant/pull/1706)
    - Remove GHC <= 8.10.7 from the support window [#1778](https://github.com/haskell-servant/servant/pull/1778)
    - Add Servant.API.Range type [#1805](https://github.com/haskell-servant/servant/pull/1805)
    - Add missing HasLink instance for DeepQuery [#1784](https://github.com/haskell-servant/servant/issues/1784) [#1814](https://github.com/haskell-servant/servant/pull/1814)
* Wed Mar 26 2025 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.2 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Fri Aug 30 2024 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.2.
    0.20.2
    - ---
    - Full query string helpers [#1604](https://github.com/haskell-servant/servant/pull/1604)
      This PR introduces `DeepQuery`, a route combinator that implements a pattern commonly known as deep objects.
      It builds upon the convention of using `[]` for a list of parameters:
      `books?filter[search]=value&filter[author][name]=value`.
      The corresponding type would be `DeepQuery "filter" BookQuery :> Get '[JSON] [Book]`.
    - Add IsIn instance for NamedRoutes [#1707](https://github.com/haskell-servant/servant/pull/1707)
    - Renamed `AtLeastOneFragment` type class to `AtMostOneFragment` [#1727](https://github.com/haskell-servant/servant/pull/1727)
      The previously named `AtLeastOneFragment` type class defined in the
      `Servant.API.TypeLevel` module has been renamed to `AtMostOneFragment`,
      since the previous name was misleading.
    - Use `Header'` in response headers. [#1697](https://github.com/haskell-servant/servant/pull/1697)
      Use `Header'` instead of `Header` in response, so it's possible to provide
      `Description`, for example:
      ```
      type PaginationTotalCountHeader =
      Header'
      '[ Description "Indicates to the client total count of items in collection"
      , Optional
      , Strict
      ]
      "Total-Count"
      Int
      ```
      Note: if you want to add header with description you should use `addHeader'`
      or `noHeader'` which accepts `Header'` with all modifiers.
* Mon Aug 12 2024 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.1 revision 5.
    Upstream has revised the Cabal build instructions on Hackage.
* Fri May 17 2024 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.1 revision 4.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon Nov 27 2023 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.1 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Mon Oct 02 2023 Peter Simons <psimons@suse.com>
  - Update servant to version 0.20.1.
    0.20.1
    - ---
    - Support aeson-2.2 [#1695](https://github.com/haskell-servant/servant/pull/1695)
    0.20
    - ---
    - Headers support in UVerb responses [#1570](https://github.com/haskell-servant/servant/issues/1570) [#1571](https://github.com/haskell-servant/servant/pull/1571)
    - Generalize type of `Servant.Types.SourceT.source` to any foldable [#1593](https://github.com/haskell-servant/servant/pull/1593)
    - Make `Mime(Un)Render PlainText String` instances encode/decode UTF-8 [#1645](https://github.com/haskell-servant/servant/issues/1645)
    - Add HasStatus instance for Headers (that defers StatusOf to underlying value) [#1649](https://github.com/haskell-servant/servant/pull/1649)
    - Make fromSourceIO run in IO [#1661](https://github.com/haskell-servant/servant/pull/1661)
      Some streaming abstractions, like io-streams, require stateful
      initialization. Since all actual call sites of `fromSourceIO`
      are in a context where `IO` actions can be executed, these
      streaming sources can be accomodated by having letting
      `fromSourceIO` run in `IO`.
      To migrate your existing `FromSourceIO` instance, simply put
      a `pure`/`return` in front of it.
    - Fix the handling of multiple headers with the same name. [#1666](https://github.com/haskell-servant/servant/pull/1666)
* Fri Jul 07 2023 Peter Simons <psimons@suse.com>
  - Update servant to version 0.19.1 revision 2.
    Upstream has revised the Cabal build instructions on Hackage.
* Thu Mar 30 2023 Peter Simons <psimons@suse.com>
  - Updated spec file to conform with ghc-rpm-macros-2.5.2.
* Mon Mar 13 2023 Peter Simons <psimons@suse.com>
  - Update servant to version 0.19.1 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.

Files

/usr/lib64/ghc-9.12.2/lib/package.conf.d/servant-0.20.3.0.conf
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Alternative.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Alternative.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/BasicAuth.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/BasicAuth.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Capture.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Capture.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ContentTypes.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ContentTypes.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Description.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Description.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Empty.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Empty.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Experimental
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Experimental/Auth.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Experimental/Auth.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Fragment.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Fragment.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Generic.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Generic.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Header.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Header.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Host.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Host.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/HttpVersion.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/HttpVersion.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/IsSecure.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/IsSecure.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Modifiers.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Modifiers.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/MultiVerb.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/MultiVerb.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/NamedRoutes.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/NamedRoutes.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/QueryParam.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/QueryParam.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/QueryString.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/QueryString.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Range.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Range.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Raw.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Raw.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/RemoteHost.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/RemoteHost.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ReqBody.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ReqBody.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ResponseHeaders.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ResponseHeaders.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ServerSentEvents.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/ServerSentEvents.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Status.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Status.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Stream.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Stream.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Sub.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Sub.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeErrors.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeErrors.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeLevel
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeLevel.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeLevel.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeLevel/List.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/TypeLevel/List.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/UVerb
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/UVerb.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/UVerb.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/UVerb/Union.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/UVerb/Union.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Vault.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Vault.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Verbs.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/Verbs.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/WithNamedContext.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/WithNamedContext.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/WithResource.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/API/WithResource.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Links.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Links.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Test
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Test/ComprehensiveAPI.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Test/ComprehensiveAPI.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types/Internal
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types/Internal/Response.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types/Internal/Response.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types/SourceT.dyn_hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/Servant/Types/SourceT.hi
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Alternative.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/BasicAuth.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Capture.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/ContentTypes.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Description.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Empty.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Experimental
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Experimental/Auth.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Fragment.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Generic.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Header.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Host.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/HttpVersion.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/IsSecure.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Modifiers.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/MultiVerb.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/NamedRoutes.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/QueryParam.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/QueryString.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Range.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Raw.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/RemoteHost.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/ReqBody.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/ResponseHeaders.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/ServerSentEvents.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Status.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Stream.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Sub.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/TypeErrors.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/TypeLevel
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/TypeLevel.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/TypeLevel/List.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/UVerb
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/UVerb.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/UVerb/Union.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Vault.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/Verbs.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/WithNamedContext.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/API/WithResource.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Links.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Test
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Test/ComprehensiveAPI.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Types
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Types/Internal
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Types/Internal/Response.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/extra-compilation-artifacts/hie/Servant/Types/SourceT.hie
/usr/lib64/ghc-9.12.2/lib/servant-0.20.3.0/libHSservant-0.20.3.0-Hokm4F3tROm5a4MpC8gw99.a
/usr/share/doc/packages/ghc-servant-devel
/usr/share/doc/packages/ghc-servant-devel/CHANGELOG.md


Generated by rpm2html 1.8.1

Fabrice Bellet, Sun Aug 2 01:54:38 2026