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

ghc-servant-devel-0.19-bp154.1.17 RPM for ppc64le

From OpenSuSE Leap 15.4 for ppc64le

Name: ghc-servant-devel Distribution: SUSE Linux Enterprise 15 SP4
Version: 0.19 Vendor: openSUSE
Release: bp154.1.17 Build date: Mon May 9 14:40:55 2022
Group: Unspecified Build host: obs-power9-11
Size: 11152617 Source RPM: ghc-servant-0.19-bp154.1.17.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

* Wed Feb 02 2022 Peter Simons <psimons@suse.com>
  - Update servant to version 0.19.
    Package versions follow the [Package Versioning Policy](https://pvp.haskell.org/): in A.B.C, bumps to either A or B represent major versions.
    0.19
    - ---
    [#]## Significant changes
    - Drop support for GHC < 8.6.
    - Support GHC 9.0 (GHC 9.2 should work as well, but isn't fully tested yet).
    - Support Aeson 2 ([#1475](https://github.com/haskell-servant/servant/pull/1475)),
      which fixes a [DOS vulnerability](https://github.com/haskell/aeson/issues/864)
      related to hash collisions.
    - Add `NamedRoutes` combinator, making support for records first-class in Servant
      ([#1388](https://github.com/haskell-servant/servant/pull/1388)).
      Users can now directly mark part as an API as defined by a record, instead of
      using `(:<|>)` to combine routes. Concretely, the anonymous:
      ```haskell
      type API =
      "version" :> Get '[JSON] String :<|>
      "products" :> Get '[JSON] [Product]
      ```
      can be replaced with the explicitly-named:
      ```haskell
      type API = NamedRoutes NamedAPI
      data NamedAPI mode = NamedAPI
      { version :: mode :- "version" :> Get '[JSON] String
      , products :: mode :- "products" :> Get '[JSON] [Product]
      }
      ```
      `NamedRoutes` builds upon `servant-generic`, but improves usability by freeing
      users from the need to perform `toServant` / `fromServant` conversions
      manually. Serving `NamedRoutes NamedAPI` is now done directly by providing a
      record of handlers, and servant generates clients directly as records as well.
      In particular, it makes it much more practical to work with nested hierarchies
      of named routes.
      Two convenience functions, `(//)` and `(/:)`, have been added to make the
      usage of named route hierarchies more pleasant:
      ```haskell
      rootClient :: RootApi (AsClientT ClientM)
      rootClient = client (Proxy @API)
      hello :: String -> ClientM String
      hello name = rootClient // hello /: name
      endpointClient :: ClientM Person
      endpointClient = client // subApi /: "foobar123" // endpoint
      type Api = NamedRoutes RootApi
      data RootApi mode = RootApi
      { subApi :: mode :- Capture "token" String :> NamedRoutes SubApi
      , hello :: mode :- Capture "name" String :> Get '[JSON] String
      , …
      } deriving Generic
      data SubApi mode = SubApi
      { endpoint :: mode :- Get '[JSON] Person
      , …
      } deriving Generic
      ```
    - Add custom type errors for partially applied combinators
      ([#1289](https://github.com/haskell-servant/servant/pull/1289),
      [#1486](https://github.com/haskell-servant/servant/pull/1486)).
      For example, forgetting to document the expected type for a query parameter,
      as in:
      ``` haskell
      type API = QueryParam "param" :> Get '[JSON] NoContent
      ```
      will raise to the following error when trying to serve the API:
      ```
      • There is no instance for HasServer (QueryParam'
      '[Optional, Strict] "param" :> ...)
      QueryParam' '[Optional, Strict] "1" expects 1 more arguments
      ```
      As a consequence of this change, unsaturated types are now forbidden before `(:>)`.
    - Add a `HeadNoContent` verb ([#1502](https://github.com/haskell-servant/servant/pull/1502)).
    - *servant-client* / *servant-client-core* / *servant-http-streams*:
      Fix erroneous behavior, where only 2XX status codes would be considered
      successful, irrelevant of the status parameter specified by the verb
      combinator. ([#1469](https://github.com/haskell-servant/servant/pull/1469))
    - *servant-client* / *servant-client-core*: Fix `Show` instance for
      `Servant.Client.Core.Request`.
    - *servant-client* / *servant-client-core*: Allow passing arbitrary binary data
      in Query parameters.
      ([#1432](https://github.com/haskell-servant/servant/pull/1432)).
    - *servant-docs*: Generate sample cURL requests
      ([#1401](https://github.com/haskell-servant/servant/pull/1401/files)).
      Breaking change: requires sample header values to be supplied with `headers`.
    [#]## Other changes
    - Various bit rotten cookbooks have been updated and re-introduced on
      [docs.servant.dev](https://docs.servant.dev).
    - Various version bumps.
* Tue Sep 07 2021 Ondřej Súkup <mimi.vx@gmail.com>
  - relax constraints on base-compat
* Tue Aug 17 2021 Ondřej Súkup <mimi.vx@gmail.com>
  - relax constraints on transformers-compat
* Thu Jun 24 2021 psimons@suse.com
  - Update servant to version 0.18.3.
    0.18.3
    - -----
    [#]## Significant changes
    - Add response header support to UVerb (#1420).
    - Use Capture Description if available (#1423).
    [#]## Other changes
    - Support GHC-9.0.1.
    - Bump `bytestring`, `attoparsec`, `hspec` and `singleton-bool` dependencies.
* Sat May 15 2021 psimons@suse.com
  - Update servant to version 0.18.2 revision 1.
    Upstream has revised the Cabal build instructions on Hackage.
* Tue Apr 06 2021 Ondřej Súkup <mimi.vx@gmail.com>
  - relax overconstrained deps on singleton-bool
* Thu Mar 25 2021 Ondřej Súkup <mimi.vx@gmail.com>
  - relax dep on attoparsec
* Tue Jan 19 2021 Ondřej Súkup <mimi.vx@gmail.com>
  - relax dep on http-api-data
* Thu Dec 17 2020 Ondřej Súkup <mimi.vx@gmail.com>
  - disable %{ix86} build
* Wed Dec 09 2020 psimons@suse.com
  - Add servant at version 0.18.2.

Files

/usr/lib64/ghc-8.10.7/package.conf.d/servant-0.19.conf
/usr/lib64/ghc-8.10.7/servant-0.19/Servant
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Alternative.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Alternative.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Alternative.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/BasicAuth.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/BasicAuth.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/BasicAuth.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Capture.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Capture.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Capture.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ContentTypes.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ContentTypes.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ContentTypes.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Description.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Description.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Description.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Empty.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Empty.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Empty.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Experimental
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Experimental/Auth.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Experimental/Auth.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Experimental/Auth.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Fragment.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Fragment.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Fragment.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Generic.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Generic.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Generic.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Header.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Header.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Header.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/HttpVersion.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/HttpVersion.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/HttpVersion.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/IsSecure.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/IsSecure.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/IsSecure.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Modifiers.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Modifiers.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Modifiers.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/NamedRoutes.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/NamedRoutes.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/NamedRoutes.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/QueryParam.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/QueryParam.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/QueryParam.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Raw.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Raw.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Raw.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/RemoteHost.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/RemoteHost.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/RemoteHost.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ReqBody.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ReqBody.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ReqBody.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ResponseHeaders.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ResponseHeaders.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/ResponseHeaders.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Status.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Status.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Status.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Stream.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Stream.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Stream.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Sub.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Sub.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Sub.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeErrors.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeErrors.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeErrors.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeLevel.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeLevel.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/TypeLevel.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb/Union.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb/Union.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/UVerb/Union.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Vault.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Vault.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Vault.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Verbs.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Verbs.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/Verbs.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/WithNamedContext.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/WithNamedContext.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/API/WithNamedContext.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Links.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Links.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Links.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Test
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Test/ComprehensiveAPI.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Test/ComprehensiveAPI.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Test/ComprehensiveAPI.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Types
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Types/SourceT.dyn_hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Types/SourceT.hi
/usr/lib64/ghc-8.10.7/servant-0.19/Servant/Types/SourceT.p_hi
/usr/lib64/ghc-8.10.7/servant-0.19/libHSservant-0.19-96glPAswb5AGi6BTm6NHtX.a
/usr/lib64/ghc-8.10.7/servant-0.19/libHSservant-0.19-96glPAswb5AGi6BTm6NHtX_p.a
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Alternative.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-BasicAuth.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Capture.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-ContentTypes.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Description.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Empty.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Experimental-Auth.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Fragment.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Generic.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Header.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-HttpVersion.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-IsSecure.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Modifiers.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-NamedRoutes.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-QueryParam.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Raw.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-RemoteHost.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-ReqBody.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-ResponseHeaders.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Status.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Stream.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Sub.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-TypeErrors.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-TypeLevel.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-UVerb-Union.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-UVerb.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Vault.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-Verbs.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API-WithNamedContext.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-API.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-Links.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-Test-ComprehensiveAPI.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/Servant-Types-SourceT.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-58.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-A.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-All.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-B.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-C.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-D.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-E.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-F.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-G.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-H.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-I.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-J.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-K.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-L.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-M.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-N.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-O.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-P.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-Q.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-R.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-S.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-T.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-U.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-V.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-W.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index-Y.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/doc-index.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/haddock-bundle.min.js
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/index.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/linuwial.css
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/meta.json
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/quick-jump.css
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/servant.haddock
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/servant.txt
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Alternative.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.BasicAuth.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Capture.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.ContentTypes.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Description.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Empty.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Experimental.Auth.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Fragment.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Generic.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Header.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.HttpVersion.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.IsSecure.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Modifiers.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.NamedRoutes.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.QueryParam.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Raw.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.RemoteHost.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.ReqBody.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.ResponseHeaders.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Status.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Stream.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Sub.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.TypeErrors.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.TypeLevel.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.UVerb.Union.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.UVerb.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Vault.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.Verbs.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.WithNamedContext.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.API.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.Links.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.Test.ComprehensiveAPI.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/Servant.Types.SourceT.html
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/highlight.js
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/src/style.css
/usr/share/doc/ghc-8.10.7/html/libraries/servant-0.19/synopsis.png
/usr/share/doc/packages/ghc-servant-devel
/usr/share/doc/packages/ghc-servant-devel/CHANGELOG.md


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:00:22 2024