-
Notifications
You must be signed in to change notification settings - Fork 0
/
servant-activeresource.cabal
63 lines (56 loc) · 2.12 KB
/
servant-activeresource.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
objects, with a similar interface to the Rails ActiveRecord ORM.
.
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
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || ==9.6.6 || ==9.8.2
source-repository head
type: git
location: https://github.com/bellroy/servant-activeresource.git
common opts
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Werror=incomplete-patterns
-Wredundant-constraints -Wpartial-fields -Wtabs
-Wmissing-local-signatures -fhelpful-errors
-fprint-expanded-synonyms -fwarn-unused-do-bind
common deps
build-depends:
, aeson ^>=2.1.1.0 || ^>=2.2
, base >=4.14 && <4.21
, bytestring >=0.10.12 && <0.13
, containers ^>=0.6 || ^>=0.7
, servant >=0.19 && <0.21
, servant-server >=0.19 && <0.21
, template-haskell >=2.16 && <2.23
, text ^>=1.2 || >=2.0 && <=2.2
library
import: deps, opts
exposed-modules: Servant.ActiveResource
hs-source-dirs: src
test-suite spec
import: deps, opts
type: exitcode-stdio-1.0
hs-source-dirs: th-test
main-is: Main.hs
build-depends: servant-activeresource