-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c9a361
commit d95970a
Showing
1 changed file
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cabal-version: 2.2 | ||
name: servant-activeresource | ||
version: 0.1.0.0 | ||
synopsis: Servant endpoints compatible with Rails's ActiveResources | ||
cabal-version: 2.2 | ||
name: servant-activeresource | ||
version: 0.1.0.0 | ||
synopsis: Servant endpoints compatible with Rails's ActiveResources | ||
description: | ||
[ActiveResource](https://github.com/rails/activeresource) is a Rails | ||
library for representing resources from a RESTful API as Ruby | ||
|
@@ -10,19 +10,20 @@ description: | |
This library provides types and TH helpers for describing such APIs, | ||
and for implementing Servant-style servers to provide them. | ||
|
||
homepage: https://github.com/bellroy/servant-activeresource | ||
bug-reports: https://github.com/bellroy/servant-activeresource/issues | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
author: Bellroy Tech Team <[email protected]> | ||
maintainer: Bellroy Tech Team <[email protected]> | ||
copyright: Copyright (C) 2024 Bellroy Pty Ltd | ||
category: Servant, Web | ||
build-type: Simple | ||
homepage: https://github.com/bellroy/servant-activeresource | ||
bug-reports: https://github.com/bellroy/servant-activeresource/issues | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
author: Bellroy Tech Team <[email protected]> | ||
maintainer: Bellroy Tech Team <[email protected]> | ||
copyright: Copyright (C) 2024 Bellroy Pty Ltd | ||
category: Servant, Web | ||
build-type: Simple | ||
extra-doc-files: | ||
CHANGELOG.md | ||
README.md | ||
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.5 || ==9.6.2 | ||
|
||
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.7 || ==9.4.5 || ==9.6.2 | ||
|
||
common opts | ||
default-language: Haskell2010 | ||
|
@@ -42,7 +43,7 @@ common deps | |
, servant >=0.19 && <0.21 | ||
, servant-server >=0.19 && <0.21 | ||
, template-haskell >=2.16 && <2.21 | ||
, text ^>=1.2 || >=2.0 && <=2.2 | ||
, text ^>=1.2 || >=2.0 && <=2.2 | ||
|
||
library | ||
import: deps, opts | ||
|